(0.1ms) select sqlite_version(*)  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.0ms) PRAGMA index_list("schema_migrations")  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateItems (6)  (0.6ms) CREATE TABLE "items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "call_number" varchar(255), "item_identifier" varchar(255), "circulation_status_id" integer DEFAULT 5 NOT NULL, "checkout_type_id" integer DEFAULT 1 NOT NULL, "created_at" datetime, "updated_at" datetime, "deleted_at" datetime, "shelf_id" integer DEFAULT 1 NOT NULL, "basket_id" integer, "include_supplements" boolean DEFAULT 'f' NOT NULL, "checkouts_count" integer DEFAULT 0 NOT NULL, "owns_count" integer DEFAULT 0 NOT NULL, "resource_has_subjects_count" integer DEFAULT 0 NOT NULL, "note" text, "url" varchar(255), "price" integer, "lock_version" integer DEFAULT 0 NOT NULL, "required_role_id" integer DEFAULT 1 NOT NULL, "state" varchar(255), "required_score" integer DEFAULT 0 NOT NULL)  (0.0ms) PRAGMA index_list("items")  (0.1ms) CREATE INDEX "index_items_on_circulation_status_id" ON "items" ("circulation_status_id")  (0.0ms) PRAGMA index_list("items")  (0.0ms) PRAGMA index_info('index_items_on_circulation_status_id')  (0.1ms) CREATE INDEX "index_items_on_checkout_type_id" ON "items" ("checkout_type_id")  (0.0ms) PRAGMA index_list("items")  (0.0ms) PRAGMA index_info('index_items_on_checkout_type_id')  (0.0ms) PRAGMA index_info('index_items_on_circulation_status_id')  (0.1ms) CREATE INDEX "index_items_on_shelf_id" ON "items" ("shelf_id")  (0.0ms) PRAGMA index_list("items")  (0.0ms) PRAGMA index_info('index_items_on_shelf_id')  (0.0ms) PRAGMA index_info('index_items_on_checkout_type_id')  (0.0ms) PRAGMA index_info('index_items_on_circulation_status_id')  (0.1ms) CREATE INDEX "index_items_on_item_identifier" ON "items" ("item_identifier")  (0.0ms) PRAGMA index_list("items")  (0.0ms) PRAGMA index_info('index_items_on_item_identifier')  (0.0ms) PRAGMA index_info('index_items_on_shelf_id')  (0.0ms) PRAGMA index_info('index_items_on_checkout_type_id')  (0.0ms) PRAGMA index_info('index_items_on_circulation_status_id')  (0.1ms) CREATE INDEX "index_items_on_required_role_id" ON "items" ("required_role_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('6') Migrating to CreateQuestions (98)  (0.4ms) CREATE TABLE "questions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "body" text, "shared" boolean DEFAULT 't' NOT NULL, "answers_count" integer DEFAULT 0 NOT NULL, "deleted_at" datetime, "state" varchar(255), "solved" boolean DEFAULT 'f' NOT NULL, "note" text, "created_at" datetime, "updated_at" datetime)  (0.0ms) PRAGMA index_list("questions")  (0.1ms) CREATE INDEX "index_questions_on_user_id" ON "questions" ("user_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('98') Migrating to CreateAnswers (99)  (0.4ms) CREATE TABLE "answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "question_id" integer NOT NULL, "body" text, "created_at" datetime, "updated_at" datetime, "deleted_at" datetime, "shared" boolean DEFAULT 't' NOT NULL, "state" varchar(255), "item_identifier_list" text, "url_list" text)  (0.0ms) PRAGMA index_list("answers")  (0.1ms) CREATE INDEX "index_answers_on_user_id" ON "answers" ("user_id")  (0.0ms) PRAGMA index_list("answers")  (0.0ms) PRAGMA index_info('index_answers_on_user_id')  (0.1ms) CREATE INDEX "index_answers_on_question_id" ON "answers" ("question_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('99') Migrating to CreateAnswerHasItems (20100217054028)  (0.4ms) CREATE TABLE "answer_has_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "answer_id" integer, "item_id" integer, "position" integer, "created_at" datetime, "updated_at" datetime)   (0.0ms) PRAGMA index_list("answer_has_items")  (0.1ms) CREATE INDEX "index_answer_has_items_on_answer_id" ON "answer_has_items" ("answer_id")  (0.0ms) PRAGMA index_list("answer_has_items")  (0.0ms) PRAGMA index_info('index_answer_has_items_on_answer_id')  (0.1ms) CREATE INDEX "index_answer_has_items_on_item_id" ON "answer_has_items" ("item_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100217054028') Migrating to ActsAsTaggableOnMigration (20100525171356)  (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "name_transcription" varchar(255), "created_at" datetime, "updated_at" datetime)  (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "tagger_id" integer, "tagger_type" varchar(255), "context" varchar(255), "created_at" datetime)   (0.0ms) PRAGMA index_list("taggings")  (0.1ms) CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")  (0.0ms) PRAGMA index_list("taggings")  (0.0ms) PRAGMA index_info('index_taggings_on_tag_id')  (0.1ms) CREATE INDEX "index_taggings_on_taggable_id_and_taggable_type_and_context" ON "taggings" ("taggable_id", "taggable_type", "context")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100525171356') Migrating to CreateLanguages (20111201121636)  (0.3ms) CREATE TABLE "languages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "native_name" varchar(255), "display_name" text, "iso_639_1" varchar(255), "iso_639_2" varchar(255), "iso_639_3" varchar(255), "note" text, "position" integer, "created_at" datetime, "updated_at" datetime)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111201121636') Migrating to CreateRoles (20111201121844)  (0.3ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "display_name" text, "note" text, "position" integer, "created_at" datetime, "updated_at" datetime)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111201121844') Migrating to CreateUsers (20111201155456)  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_group_id" integer, "required_role_id" integer, "username" varchar(255), "note" text, "locale" varchar(255), "created_at" datetime, "updated_at" datetime)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111201155456') Migrating to AddDeviseToUsers (20111201155513)  (25.2ms) ALTER TABLE "users" ADD "email" varchar(255) DEFAULT '' NOT NULL  (0.1ms) ALTER TABLE "users" ADD "encrypted_password" varchar(128) DEFAULT '' NOT NULL  (0.1ms) ALTER TABLE "users" ADD "reset_password_token" varchar(255)  (0.1ms) ALTER TABLE "users" ADD "reset_password_sent_at" datetime  (0.1ms) ALTER TABLE "users" ADD "remember_created_at" datetime  (0.1ms) ALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0  (0.1ms) ALTER TABLE "users" ADD "current_sign_in_at" datetime  (0.1ms) ALTER TABLE "users" ADD "last_sign_in_at" datetime  (0.1ms) ALTER TABLE "users" ADD "current_sign_in_ip" varchar(255)  (0.1ms) ALTER TABLE "users" ADD "last_sign_in_ip" varchar(255)  (0.0ms) PRAGMA index_list("users")  (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.4ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111201155513') Migrating to CreateUserGroups (20111201163342)  (0.3ms) CREATE TABLE "user_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "display_name" text, "note" text, "position" integer, "created_at" datetime, "updated_at" datetime)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111201163342') Migrating to CreateUserHasRoles (20111201163718)  (0.3ms) CREATE TABLE "user_has_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "role_id" integer, "created_at" datetime, "updated_at" datetime)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111201163718')  (0.4ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) PRAGMA index_list("answer_has_items")  (0.0ms) PRAGMA index_info('index_answer_has_items_on_item_id')  (0.0ms) PRAGMA index_info('index_answer_has_items_on_answer_id')  (0.0ms) PRAGMA index_list("answers")  (0.0ms) PRAGMA index_info('index_answers_on_question_id')  (0.0ms) PRAGMA index_info('index_answers_on_user_id')  (0.0ms) PRAGMA index_list("items")  (0.0ms) PRAGMA index_info('index_items_on_required_role_id')  (0.0ms) PRAGMA index_info('index_items_on_item_identifier')  (0.0ms) PRAGMA index_info('index_items_on_shelf_id')  (0.0ms) PRAGMA index_info('index_items_on_checkout_type_id')  (0.0ms) PRAGMA index_info('index_items_on_circulation_status_id')  (0.0ms) PRAGMA index_list("languages")  (0.0ms) PRAGMA index_list("questions")  (0.0ms) PRAGMA index_info('index_questions_on_user_id')  (0.0ms) PRAGMA index_list("roles")  (0.1ms) PRAGMA index_list("taggings")  (0.0ms) PRAGMA index_info('index_taggings_on_taggable_id_and_taggable_type_and_context')  (0.0ms) PRAGMA index_info('index_taggings_on_tag_id')  (0.0ms) PRAGMA index_list("tags")  (0.0ms) PRAGMA index_list("user_groups")  (0.0ms) PRAGMA index_list("user_has_roles")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_email') Fixture Delete (21.9ms) DELETE FROM "answer_has_items" Fixture Insert (0.2ms) INSERT INTO "answer_has_items" ("updated_at", "item_id", "answer_id", "id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 1, 1, 1, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answer_has_items" ("updated_at", "item_id", "answer_id", "id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 2, 2, 2, '2007-12-25 17:28:47.252993') Fixture Delete (0.2ms) DELETE FROM "answers" Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 1, 1, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 2, 2, '2007-12-25 17:28:47.252993') Fixture Insert (0.8ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 3, 3, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 4, 4, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 5, 5, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 6, 1, '2007-12-25 17:28:47.252993') Fixture Delete (0.1ms) DELETE FROM "questions" Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'Yahoo', 1, 1, 't', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 2, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 3, 3, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 4, 4, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:48.252993', 'test', 5, 5, 't', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 6, 1, 'f', '2007-12-25 17:28:47.252993') Fixture Delete (0.1ms) DELETE FROM "roles" Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Guest', 'Guest', 1, NULL, '2011-12-28 21:48:58', '2011-12-28 21:48:58') Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('User', 'User', 2, NULL, '2011-12-28 21:48:58', '2011-12-28 21:48:58') Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Librarian', 'Librarian', 3, NULL, '2011-12-28 21:48:58', '2011-12-28 21:48:58') Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Administrator', 'Administrator', 4, NULL, '2011-12-28 21:48:58', '2011-12-28 21:48:58') Fixture Delete (0.1ms) DELETE FROM "user_groups" Fixture Insert (0.1ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('(not specified)', '(not specified)', '2007-12-13 12:00:51.564542', 1, '', '2007-12-13 12:00:01.674976', 1) Fixture Insert (0.1ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('User', 'User', '2007-12-22 18:14:56.836548', 2, '', '2007-12-22 18:14:40.173954', 2) Fixture Insert (0.1ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('Faculty', 'Faculty', '2007-12-22 18:15:05.134351', 3, '', '2007-12-22 18:15:05.126457', 3) Fixture Delete (0.1ms) DELETE FROM "user_has_roles" Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (1, 4, '2011-12-28 21:48:58', '2011-12-28 21:48:58', 135138680) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (2, 3, '2011-12-28 21:48:58', '2011-12-28 21:48:58', 344583537) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (3, 2, '2011-12-28 21:48:58', '2011-12-28 21:48:58', 206669143) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (4, 3, '2011-12-28 21:48:58', '2011-12-28 21:48:58', 226540757) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (5, 2, '2011-12-28 21:48:58', '2011-12-28 21:48:58', 358143215) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (6, 2, '2011-12-28 21:48:58', '2011-12-28 21:48:58', 576709754) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (7, 2, '2011-12-28 21:48:58', '2011-12-28 21:48:58', 1010528733) Fixture Delete (0.2ms) DELETE FROM "users" Fixture Insert (0.2ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:16:30.163731', '$2a$10$vHohD1WflnTIqAa8zMkF9evwAgIZRw3XuR4d3bi29M.jph/MB/AJi', 2, 1, NULL, 'admin', 'tanabe@kamata.lib.teu.ac.jp', '2007-11-19 07:58:32.111941', 4) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 03:41:16.337474', '$2a$10$9O2VuTccN4gHq36ARg0QReSrb1D7WrBBhZZ759RM9moHbB0W5zCzS', 1, 2, NULL, 'librarian1', 'librarian1@kamata.lib.teu.ac.jp', '2007-11-19 07:58:33.172441', 1) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', '$2a$10$JthS59A0BNkDOoFpCXM0V.GhhffKaoWKbzpPahYp/vTFrOyM7h/uW', 1, 3, NULL, 'user1', 'user1@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "created_at", "required_role_id") VALUES ('2008-05-31 03:42:23.340575', '$2a$10$YmmTGrYQ1Ir6oc7wXnp.GuNeO1eYLoP3sv8wMSIrTdaGw2BPwRrpS', 1, 4, NULL, 'librarian2', '2008-01-18 03:24:04.222344', 1) Fixture Insert (0.8ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "created_at", "required_role_id") VALUES ('2008-05-31 03:42:44.711117', '$2a$10$i7UjJhLVrJM/J7qaTwW39OXw1NiwowUEbtNHVDV0sqMLjX9.UO9ca', 1, 5, NULL, 'user2', '2008-01-18 04:29:06.922728', 2) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', 'cc53de0c2d9a1a228daa9a673ec824473747e17507a6c3c4f7e5eff8821f531d4b9e23616b3ddc66fe17006b2298a556fbd567ac080e87f00f37eef8cee6c417', 1, 6, NULL, 'user3', 'user3@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', 'cc53de0c2d9a1a228daa9a673ec824473747e17507a6c3c4f7e5eff8821f531d4b9e23616b3ddc66fe17006b2298a556fbd567ac080e87f00f37eef8cee6c417', 1, 7, NULL, 'user4', 'user4@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3) User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by AnswersController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers" Rendered /Users/kosuke/enju_question/app/views/answers/index.html.erb within layouts/application (11.2ms) Completed 200 OK in 345ms (Views: 129.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "answers"  User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by AnswersController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers"  Completed 200 OK in 15ms (Views: 3.6ms | ActiveRecord: 0.5ms | Solr: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "answers" User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 403 Forbidden in 9ms (Views: 2.6ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 403 Forbidden in 9ms (Views: 1.3ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML Parameters: {"user_id"=>"user1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3 Completed 200 OK in 38ms (Views: 2.1ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#index as HTML Parameters: {"user_id"=>"user2"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2' LIMIT 1 Completed 403 Forbidden in 9ms (Views: 1.2ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as RSS Parameters: {"user_id"=>"user1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3 Completed 200 OK in 169ms (Views: 159.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by AnswersController#index as HTML Parameters: {"question_id"=>"2", "user_id"=>"librarian1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'librarian1' LIMIT 1 Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "2"]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Completed 403 Forbidden in 41ms (Views: 1.3ms | ActiveRecord: 0.8ms | Solr: 0.0ms) Processing by AnswersController#index as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 25ms Processing by AnswersController#index as HTML Parameters: {"question_id"=>"1"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 1 Completed 200 OK in 12ms (Views: 1.4ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Processing by AnswersController#index as HTML Parameters: {"question_id"=>"5"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 5 Completed 200 OK in 9ms (Views: 1.4ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Processing by AnswersController#index as RSS Parameters: {"question_id"=>"2"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "2"]] Completed 406 Not Acceptable in 5ms Processing by AnswersController#index as RSS Parameters: {"question_id"=>"5"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 5 Completed 200 OK in 10ms (Views: 2.1ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_1@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (81.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_1@example.jp"], ["encrypted_password", "$2a$04$/KmXSDeTth3XDqP9KqhEZ..UGQpmmaEcRVwdYuiCc7q76tKxDfnCy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["user_group_id", 1], ["username", "user_1"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:48:59.617113' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_1"], ["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_2@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_2@example.jp"], ["encrypted_password", "$2a$04$z2SWxcVzU2Nm.p7uFgpc9ewl1puLbVGhcToPKsebB1x3Fcw99.oJu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["user_group_id", 1], ["username", "user_2"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:48:59.637628' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_1"], ["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.2ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 35ms (Views: 23.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_3@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_3@example.jp"], ["encrypted_password", "$2a$04$qBQcl32vmpIaPTwzIlxJHu33GIi4KHx255WBNU9TCg1.35WrFYA4m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["user_group_id", 1], ["username", "user_3"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:48:59.737340' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (2.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_2"], ["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_4@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_4@example.jp"], ["encrypted_password", "$2a$04$vx6LzWaJB5wz/Lwjh5Zp1.dfL/O5F/IagHlVw/5wzdSwvLAR5fdY."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["user_group_id", 1], ["username", "user_4"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:48:59.757181' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_2"], ["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 14ms (Views: 1.4ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_5@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_5@example.jp"], ["encrypted_password", "$2a$04$1Fk0omgRpoUKWzKltH4WE.K3u/z2AsLJRhOlk1vAc8woAofT2m7h2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["user_group_id", 1], ["username", "user_5"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:48:59.800041' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_3"], ["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_6@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (53.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_6@example.jp"], ["encrypted_password", "$2a$04$h2pOfBdviES7hphP9IKNi.ibYIGHsgrDUywihYesQl8NsV1uyK8Bm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["user_group_id", 1], ["username", "user_6"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:48:59.870497' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_3"], ["created_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:48:59 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 14ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 15ms (Views: 1.3ms | ActiveRecord: 0.9ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Completed 200 OK in 11ms (Views: 1.2ms | ActiveRecord: 0.7ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Completed 200 OK in 11ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"4"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 4 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 11ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 8ms (Views: 1.9ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user2", "question_id"=>"2", "id"=>"5"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 11ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"question_id"=>"2", "id"=>"5"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_7@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_7@example.jp"], ["encrypted_password", "$2a$04$3sTah4S87MrWmjBEwGdxpu9HHu5XHQMRSuNXHKkPOHJQJpBnlFojS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_7"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.030773' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_4"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_8@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_8@example.jp"], ["encrypted_password", "$2a$04$UTu.PZZkNNdZd/WV.BiqFuFtd8AYh7jqf0s9JoNzlflV70mcRL82G"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_8"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.047867' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_4"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 10ms (Views: 1.3ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"1"} Answer Load (0.2ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] Completed 200 OK in 12ms (Views: 1.2ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"4"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Redirected to http://test.host/users/sign_in Completed 302 Found in 11ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by AnswersController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 9ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 12ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 10ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML Parameters: {"question_id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 23ms (Views: 13.0ms | ActiveRecord: 0.5ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Processing by AnswersController#new as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_9@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_9@example.jp"], ["encrypted_password", "$2a$04$s6hOyCKMyOkf5eJXVvxtduU4swwLB1hYFRkH8EjLNEnMTnQS7jkg2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_9"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.277905' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_5"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_10@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_10@example.jp"], ["encrypted_password", "$2a$04$VzLk9O3VA4Z1smqAWUMc6eBHpbrLL.Rz2Soq5AyN/AWneqwnZKQZe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_10"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.296441' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_5"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 19ms (Views: 8.6ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_11@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_11@example.jp"], ["encrypted_password", "$2a$04$7KUx0ulzSPn2kSf1kXBSuu8Ed2nDAt8MH/fwmQsIOJ4nleOHYIdwS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_11"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.348789' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_6"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_12@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_12@example.jp"], ["encrypted_password", "$2a$04$xp7J5lnQcBzTV52uAB5hFOYwHUjc6h3IWNn6VhTLh/rOD3dVTpu26"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_12"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.369495' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_6"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.3ms | ActiveRecord: 0.5ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_13@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_13@example.jp"], ["encrypted_password", "$2a$04$9GUnjJLmLhngiFK1H/GHwOimqLpY3RYD.iPZlyxkQh7Ej69BObnrS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_13"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.462645' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_7"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_14@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_14@example.jp"], ["encrypted_password", "$2a$04$V3WnRLSa553ttdIya/2pNuaoz63XjSjUbAF4FKmixH1AzjU3G7oSG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_14"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.476463' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_7"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Completed 403 Forbidden in 9ms (Views: 0.8ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"question_id"=>"1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"question_id"=>"1", "id"=>"4"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 4 LIMIT 1 Completed 403 Forbidden in 8ms (Views: 1.1ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"100"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "100"]] Completed 404 Not Found in 4ms (Views: 0.8ms | ActiveRecord: 0.1ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user2", "question_id"=>"2", "id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 7ms (Views: 0.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_15@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_15@example.jp"], ["encrypted_password", "$2a$04$RBPJcsDNHLhC2cwjwzdlQOP9yu2GhwALdht6HIPC..2jDhekwTjE6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_15"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.563167' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_8"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_16@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_16@example.jp"], ["encrypted_password", "$2a$04$mwvzpx/rPI5aojT4rHotOOtxRSBn7NPILDtKcaNLDnVFQJzlkheri"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_16"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.573834' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.4ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_8"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 5ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_17@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (33.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_17@example.jp"], ["encrypted_password", "$2a$04$mRX3fq8.arPPcJsKyZPICOExLNQ115OP9PQmAN7KHO7eazKGuGWLK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_17"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.628800' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_9"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_18@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_18@example.jp"], ["encrypted_password", "$2a$04$egev9pH8ttXrXryjVDOyc.2MFWTQgF/zS/TNBNxVhi9tVjSbZMhAC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_18"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.639425' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"question_id"=>"1", "body"=>"hoge"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 SQL (0.6ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "hoge"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 1], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["url_list", nil], ["user_id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/7 Completed 302 Found in 12ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_19@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_19@example.jp"], ["encrypted_password", "$2a$04$Z5Gt0SeRojXsz1ZxwvNQh.Mf2qPWBoJTCNf5t.Dd7D2vXvAvrdaKy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_19"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.663674' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_10"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_20@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_20@example.jp"], ["encrypted_password", "$2a$04$YeT6AUSMvLTW6t8EKMsxEe/L983vLUqAonoDyxGRS3SPeQeoaSl5C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_20"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.673344' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"hoge"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 6ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_21@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_21@example.jp"], ["encrypted_password", "$2a$04$rKsL5dRC2Rj4h1jh5oKaOOegW2sBwgKqf.dQN5G.wKpCKlLe3yQga"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_21"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.693395' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_11"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_22@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_22@example.jp"], ["encrypted_password", "$2a$04$QIZuVDxSLYDKmh6/DOOXh.Wv4eixVgfMYhC.6FEyCDxeXwAeL0X0a"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_22"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.703686' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"question_id"=>"1", "body"=>"hoge"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 SQL (0.6ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "hoge"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 1], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["url_list", nil], ["user_id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/7 Completed 302 Found in 12ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_23@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_23@example.jp"], ["encrypted_password", "$2a$04$SVIbD08XVkB7SPD.8jfh7.JwGXFpfsOvhWRuhuYJxpUPTxplNc40e"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_23"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.729582' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_12"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_24@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_24@example.jp"], ["encrypted_password", "$2a$04$C50TLlLTawSEm1r2FbUWXeTrIQMjj79a3In7kwTV6ufgEG6.rqS/a"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_24"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.739612' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"answer_12", "question_id"=>"7", "user_id"=>"9"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 5ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_25@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_25@example.jp"], ["encrypted_password", "$2a$04$9jKB4N.nhTm9Vtg0dZ2yQeSkuYq8x/v1IZBWX1gi7O98kkMXIcSn."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_25"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.790971' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_13"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_26@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_26@example.jp"], ["encrypted_password", "$2a$04$vIIm3O8oT39v8zMP7dXUtuGGJLhM3Pha2mCK94OvPaxR6OMJedNxK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_26"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.800870' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"answer_13", "question_id"=>"7", "user_id"=>"9"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 5ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_27@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_27@example.jp"], ["encrypted_password", "$2a$04$wq1sIFR.xo7CEbP6x0h0/uLyMXrGasOMPdrrraN.5WatzTTimypd2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_27"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.818118' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_14"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_28@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_28@example.jp"], ["encrypted_password", "$2a$04$B6HoKNLvfFo0W3F7USXzVOspqm0LOoBt/vTB9AkVycP1QfNUM/aYe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_28"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.828916' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 5ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_29@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_29@example.jp"], ["encrypted_password", "$2a$04$DCd51KQPqWCQFE8aFYgSa.CmA0jYK1ZyOvdV9C0RvgTD9i7hmGske"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_29"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.845907' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_15"], ["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_30@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_30@example.jp"], ["encrypted_password", "$2a$04$V1g0OKw7M/S9JpWo.fT/R.enSA7tY7riGycarzm1hf.xANVW..6hK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_group_id", 1], ["username", "user_30"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:00.856893' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 5ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 47ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 11ms Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 10ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 10ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 10ms Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 10ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"missing"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 5ms (Views: 0.9ms | ActiveRecord: 0.1ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user2", "id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 6ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "question_id"=>"1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 11ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 45ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 10ms Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"1"} Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 4ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"1"} Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 4ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#destroy as HTML Parameters: {"id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 AnswerHasItem Load (0.1ms) SELECT "answer_has_items".* FROM "answer_has_items" WHERE "answer_has_items"."answer_id" = 3 SQL (0.2ms) DELETE FROM "answers" WHERE "answers"."id" = ? [["id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Redirected to http://test.host/questions/1/answers Completed 302 Found in 8ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#destroy as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 7ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Processing by AnswersController#destroy as HTML Parameters: {"id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 5ms User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 SOLR Request (59.5ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (6.7ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 243ms (Views: 39.0ms | ActiveRecord: 0.4ms | Solr: 66.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 SOLR Request (14.0ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (8.4ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 33ms (Views: 1.2ms | ActiveRecord: 0.3ms | Solr: 22.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#index as RSS User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 SOLR Request (5.4ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (11.3ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 59ms (Views: 32.6ms | ActiveRecord: 0.3ms | Solr: 16.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 SOLR Request (10.6ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (10.3ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 34ms (Views: 1.4ms | ActiveRecord: 0.3ms | Solr: 20.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#index as RSS User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 SOLR Request (7.8ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (13.6ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 36ms (Views: 1.3ms | ActiveRecord: 0.3ms | Solr: 21.5ms) Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."shared" = 't' ORDER BY id DESC, updated_at LIMIT 10 OFFSET 0 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#index as RSS Parameters: {"user_id"=>"user1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 SOLR Request (11.8ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser1&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (11.0ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser1&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 36ms (Views: 1.4ms | ActiveRecord: 0.5ms | Solr: 22.8ms) Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."user_id" = 3 ORDER BY id DESC User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by QuestionsController#index as HTML Parameters: {"user_id"=>"user2"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2' LIMIT 1 SOLR Request (10.1ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (13.0ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 39ms (Views: 1.5ms | ActiveRecord: 0.5ms | Solr: 23.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by QuestionsController#index as RSS Parameters: {"user_id"=>"user2"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2' LIMIT 1 SOLR Request (16.1ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (16.3ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 108ms (Views: 63.1ms | ActiveRecord: 0.5ms | Solr: 32.4ms) Processing by QuestionsController#index as HTML SOLR Request (4.8ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (5.0ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 24ms (Views: 1.4ms | ActiveRecord: 0.0ms | Solr: 9.8ms) Processing by QuestionsController#index as HTML Parameters: {"query"=>"Yahoo"} SOLR Request (20.1ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (11.1ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 1012ms (Views: 1.0ms | ActiveRecord: 0.0ms | Solr: 31.2ms) Processing by QuestionsController#index as XML Parameters: {"query"=>"Yahoo", "mode"=>"crd"} SOLR Request (3.9ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (3.1ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 43ms (Views: 21.4ms | ActiveRecord: 0.0ms | Solr: 7.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_31@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (33.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_31@example.jp"], ["encrypted_password", "$2a$04$k0vO4CnQKk3twFeyCrukeO2MN0SlTv5DQO43gEhavcCowzHh34hse"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["user_group_id", 1], ["username", "user_31"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:10.886234' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_16"], ["created_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 23ms (Views: 17.7ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_32@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_32@example.jp"], ["encrypted_password", "$2a$04$OH1WKmwlgVgiHFitlDgTueQ.VrWhCXkPKjRu7tAbjh7aO/zjnH4DC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["user_group_id", 1], ["username", "user_32"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:10.924952' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_17"], ["created_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_33@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_33@example.jp"], ["encrypted_password", "$2a$04$Ae6g7nTXF3rqBosJ.4KdxeuPAxevrlFHCesjdy3631.fCD.YtVZJy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["user_group_id", 1], ["username", "user_33"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:10.946528' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_18"], ["created_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_34@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_34@example.jp"], ["encrypted_password", "$2a$04$WZ6D6kc82yRUZJ/A/E1d..gKXEL43OuhZw6XJZmAJ4HPW/cL4GYWi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["user_group_id", 1], ["username", "user_34"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:10.968171' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_19"], ["created_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_35@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_35@example.jp"], ["encrypted_password", "$2a$04$fBiWfEV4J9HBFcxNPiuh8OW6klnMIqtCpfHLk6VKS/5i5H4Md4bPS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["user_group_id", 1], ["username", "user_35"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:10.988628' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_20"], ["created_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:10 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"missing"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 4ms (Views: 0.8ms | ActiveRecord: 0.1ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_36@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_36@example.jp"], ["encrypted_password", "$2a$04$7eQI6NUXv1a9Kxbq7qw1xexa4rNgOKGqkyBIXIfdJ78QggwwZPGnO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_36"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.006620' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_21"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_37@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_37@example.jp"], ["encrypted_password", "$2a$04$zTgsRHYRkz18nYb81oOR7uQGalaqXq2/utLgiBLyjUBtDMlFPn0GO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_37"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.028758' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (34.3ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_22"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 5]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_38@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_38@example.jp"], ["encrypted_password", "$2a$04$PBhQYX198p0w9XWftBTTWuHbEcnBqFYZc4JqJZCOdgkLrpr8vznbS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_38"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.084566' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_23"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.1ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_39@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_39@example.jp"], ["encrypted_password", "$2a$04$1TKD8Qw06bN0nwbUc41iLuRh13sqHJT18dWIztGzGy21/214Ty5Jm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_39"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.104702' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_24"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#show as XML Parameters: {"mode"=>"crd", "id"=>"7"} Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Completed 200 OK in 8ms (Views: 3.3ms | ActiveRecord: 0.0ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 19ms (Views: 13.3ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Processing by QuestionsController#new as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 5ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_40@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_40@example.jp"], ["encrypted_password", "$2a$04$M04vnFOMj8dLJDWMsU0b9uh/CvbbT4p8QWcWtyHHGoY62UZdxbmB6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_40"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.180697' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_25"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 9ms (Views: 2.9ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_41@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_41@example.jp"], ["encrypted_password", "$2a$04$psizO53ESU7yhi3o4VmTquPvxDTpm/lHK6TlkXkeWHuYldGinghmW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_41"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.203897' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_26"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 40ms (Views: 0.9ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_42@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_42@example.jp"], ["encrypted_password", "$2a$04$lyBHx5m3Tt292bYkqQEJF.GKYGQl8PrOcbrBmXDK6XQOhDGw1murq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_42"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.259393' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_27"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 7ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_43@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_43@example.jp"], ["encrypted_password", "$2a$04$jaGp76QDJpifc0fjK3ff2.GbYyMV77erQjww/FPxwsuB.h17VAgcm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_43"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.280424' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_28"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 8ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_44@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_44@example.jp"], ["encrypted_password", "$2a$04$KY1bwhb0nqRipnSAdl4pC.eSUDZLQj6HzxyXGvU1i6.ToPLoJLqV."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_44"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.302459' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_29"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"missing"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 5ms (Views: 0.8ms | ActiveRecord: 0.1ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_45@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_45@example.jp"], ["encrypted_password", "$2a$04$CVB4kL.eD8vImA8tm00/GOnthHjMC/yRVnGFtkEnDe5cQ2DTZEl.S"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_45"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.321439' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_30"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_46@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_46@example.jp"], ["encrypted_password", "$2a$04$ERcpW38eC1CxKZcotQXGP.stsKEu5PGCA6eg7dindCBNJUd8rMDQO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_46"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.343246' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_31"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 5ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_47@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_47@example.jp"], ["encrypted_password", "$2a$04$N7mASYDGidrl360XooXGWOkA16mREfUg457xqUPIOushbIG6q33.q"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_47"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.362857' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_32", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_32"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 10ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_48@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_48@example.jp"], ["encrypted_password", "$2a$04$DhBOCdYXQEH9dmrSU6zrJuOctwbvbOTU5itdeq.4SAXAmpBtuk1ry"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_48"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.417638' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_33", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_33"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 9ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_49@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_49@example.jp"], ["encrypted_password", "$2a$04$rvujlmVgeK6eL.ICq1WOt.Suz5TN3RI5ZYVDEuizPG.oO1D1bjvom"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_49"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.439661' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_50@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_50@example.jp"], ["encrypted_password", "$2a$04$gvRuMqieqjsuCkiYMOzHT.IxMe7gJdJJYq0Dq0FvSFdGgQ1XKaAPy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_50"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.459171' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_51@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_51@example.jp"], ["encrypted_password", "$2a$04$.x9WYgQNMHnCxKgp0WIN6eQFrGbHcJe2FCKxri6r5AVksY73ljOQ2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_51"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.477793' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_36", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_36"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 9ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_52@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_52@example.jp"], ["encrypted_password", "$2a$04$k2.hIbCOvHG8NpJMCI9IGeO6Dv8ac0YSl8Wuko/c8whBbNXvT.K5G"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_52"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.498330' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_37", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_37"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 9ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_53@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_53@example.jp"], ["encrypted_password", "$2a$04$gHHgK/K2cuy2bZ/Toc0ALe0qPY998wXJsDx.3UxLUHgZ0PFV3b0Nm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_53"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.519461' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_54@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_54@example.jp"], ["encrypted_password", "$2a$04$.BmfNl1Qh2DwNc1fHi2Dve/WCyUm/CdxBYaVtVxembKRRt4wJX4My"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_54"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.539700' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 57ms (Views: 1.2ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_55@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_55@example.jp"], ["encrypted_password", "$2a$04$x71T97VtD3E2bEVu3dwqWeaxJ4c44Yx.tHQoqjODjPl9Ev2DPFkdy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_55"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.613569' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_40", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_40"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 15ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_56@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_56@example.jp"], ["encrypted_password", "$2a$04$p1LjIWgBhNbCCujLyBpyiujQC/OG4YnnCywtVVGlXNliU4oo0fSlK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_56"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.648902' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_41", "user_id"=>"8"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_41"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 16ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_57@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_57@example.jp"], ["encrypted_password", "$2a$04$G1fx8mXfNBkkB6l.i2JQKOR0McyVmuf5quheQ//z1JSu5uAmzTqRq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_57"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.687681' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 16ms (Views: 1.4ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_58@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_58@example.jp"], ["encrypted_password", "$2a$04$/GWVCR9aaGVYX6jordleK.jaW73d9gjEq.eD8Rz7VK5J.Rr5FpoIq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_58"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.725407' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 13ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_59@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (3.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_59@example.jp"], ["encrypted_password", "$2a$04$JyAQJi7ptqGXqcYJYsYVSOqoVPdlHlC.j1OMpv3E.rwX5U3HYRwGi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_59"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.763521' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_44", "user_id"=>"8"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_60@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_60@example.jp"], ["encrypted_password", "$2a$04$GEbVEQ79c3cPrJoby/cmTOQ3YxsJaTmcBEdiHhGWtOWShYoMAITJ."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_60"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.792295' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_45", "user_id"=>"8"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_61@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (60.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_61@example.jp"], ["encrypted_password", "$2a$04$QMr.is5ET2tG/jKMNfE0M.P3suUmELWM..U0ZiVqkojRkBK7IpLHy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_61"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.878077' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_62@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_62@example.jp"], ["encrypted_password", "$2a$04$poIdRmfGbQPSOcR.CdKYCuajJp.ZXrPEhso6.Ao9sumP.2B/5jzAq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_62"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.913245' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_63@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_63@example.jp"], ["encrypted_password", "$2a$04$vuvilC04Mkxm/vnSFyWgw.0xU62mEanf76HCsJMicp0AetR1p0Dhy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_63"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.946947' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_48"], ["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_64@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_64@example.jp"], ["encrypted_password", "$2a$04$DguAB6jvQzBbF7kRZWjSH.8ecgmF.0z7OoK2qnfoSQjt1cwft136C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_64"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:11.966505' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 16ms (Views: 1.4ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_65@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (5.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_65@example.jp"], ["encrypted_password", "$2a$04$0TbFDS5xKdwpLKofk6OjL.bZfEbU4yZ4v4jjPXCxS.H8L4VdpU0CS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:11 UTC +00:00], ["user_group_id", 1], ["username", "user_65"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.006052' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_50"], ["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_66@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_66@example.jp"], ["encrypted_password", "$2a$04$ywoQ4w/TG9AD2LyJXmh8uucjmJsdjB5MIPt8RgJ652KNJZds493g6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_66"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.024424' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{}, "id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 10ms (Views: 3.2ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_67@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_67@example.jp"], ["encrypted_password", "$2a$04$d4YQOVBKAeMA08ll3dNJF.Ri.dDSscpfwEDlz30n.L88GqA95VQxa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_67"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.053425' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_52"], ["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_68@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_68@example.jp"], ["encrypted_password", "$2a$04$CpkJKTu8rs4Ea1TUUPZOeOv3N/iCTeGAbz3H7nfqSCMXXnpEYYkIy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_68"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.072942' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_53", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_53', "user_id" = 9, "updated_at" = '2011-12-28 21:49:12.090006' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 16ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_69@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_69@example.jp"], ["encrypted_password", "$2a$04$O84dYer4vhlsqMyBiJQ/LeWLfWyj6ZXTzFSMbivv/iR7XxJZ041Me"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_69"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.109706' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (61.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_54"], ["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_70@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_70@example.jp"], ["encrypted_password", "$2a$04$ViHvDYZLZYEJscHqRIvrquXDhOCx1yKIFUmTMrQWObjhSYoyHE0d."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_70"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.187629' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_55", "user_id"=>"9"}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_55', "user_id" = 9, "updated_at" = '2011-12-28 21:49:12.201903' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 14ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_71@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_71@example.jp"], ["encrypted_password", "$2a$04$GOpz7tnOLUylgnqH1ZIz6u0pcg2u7tXHFJkibw1sHL2BU6cv7WNoy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_71"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.220770' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_56"], ["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_72@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_72@example.jp"], ["encrypted_password", "$2a$04$LL5eikiiYtZnURCRpj2QFON9sBKldMmf00QYV6v5MjuSVffmgdZPq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_72"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.240310' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 1.3ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_73@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_73@example.jp"], ["encrypted_password", "$2a$04$ib0aEq3SRU5Rcb2puJbR9ubskdpC.pPEC2YDpIKaWaJgatjts4eUy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_73"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.272154' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_58"], ["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_74@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_74@example.jp"], ["encrypted_password", "$2a$04$pj93U5yvZI/vPtEMQDOfV.E/dNg2BruGempuRSbRN3pBnpUuq2KUO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_74"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 9]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.291422' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_75@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_75@example.jp"], ["encrypted_password", "$2a$04$5SWp.zmf/AV.5801/diUN.pgn83KhIy22cyD5Zs6QFbsY1xA4uhd6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_75"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.329124' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_60"], ["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_76@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_76@example.jp"], ["encrypted_password", "$2a$04$317tSBsdmgm39xLhdb4rSuGnOOmo9LVCeLn0IGuUz3J4Y.vE3wM0y"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_76"]] SQL (0.5ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.348565' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_61", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_61', "user_id" = 9, "updated_at" = '2011-12-28 21:49:12.362397' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 13ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_77@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_77@example.jp"], ["encrypted_password", "$2a$04$yZrwYKz/JJzVO/D4raPT7OXu1.cZ/wtQsdyLi1O5FYtZXGZPo3p5W"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_77"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.380202' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_62"], ["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_78@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (55.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_78@example.jp"], ["encrypted_password", "$2a$04$t8Y87T7SCgpTBnX1Ghm2veAfXNTLxviPOPi97Ov6gmqf47jf2D2r6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_78"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 9]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.452822' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_63", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_63', "user_id" = 9, "updated_at" = '2011-12-28 21:49:12.473646' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 20ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_79@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_79@example.jp"], ["encrypted_password", "$2a$04$UtulJbq0XM.2QYLtU7cKnuZNZ/qgPpdhz379njz1BB9UoX80Jne.K"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_79"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.495434' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_64"], ["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_80@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_80@example.jp"], ["encrypted_password", "$2a$04$Asr6qpPhHNbflFzjPGSr..KCQzH/q7rn6or7EssfYvQarJQ3wJ.FC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_80"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.512174' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 13ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_81@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_81@example.jp"], ["encrypted_password", "$2a$04$vdMSpZmUDlWBVOTp0FBn1e5WfODNvIGWKEgSot9qOBoYU7bimsf8m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_81"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.552624' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_66"], ["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_82@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_82@example.jp"], ["encrypted_password", "$2a$04$RJqd/tji77MLRqCU2I8fQu4vLvYHhN.fV54s5ba.U.wA92jqG5yUO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_82"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.571248' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_83@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_83@example.jp"], ["encrypted_password", "$2a$04$IEkseclyR0kXVb/z3ILVVuvxf60taKnP7VMmgANIAj5sXDBvllXkG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_83"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.602447' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_68"], ["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_84@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_84@example.jp"], ["encrypted_password", "$2a$04$RT0XAE4bKC92iV0M5M97YOFA78Y0KNKCHJ/Bt.nSQtKdEu16.05G6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_84"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.620296' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/3 Completed 302 Found in 14ms Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 3]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_85@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (3.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_85@example.jp"], ["encrypted_password", "$2a$04$eOLx/NYvQ2/UiClV/NhDhO3Dtfh9gjT4Ugca70YX7eVQsx5.6c5he"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_85"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.656382' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_70"], ["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.6ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_86@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (57.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_86@example.jp"], ["encrypted_password", "$2a$04$k1cle5Mo.Xdltfd5kFW7wuzkh0YpKb4/8fsRqwtTSYOMgS5iErpqS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_86"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 9]]  (7.0ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.730627' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_71", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_87@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_87@example.jp"], ["encrypted_password", "$2a$04$jHvxFsxKFXUThSTJ1K.8/.26PqW/7QaYbwpw..jwEYaHQ9j9lD.SO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_87"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.768656' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_72"], ["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_88@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_88@example.jp"], ["encrypted_password", "$2a$04$992cB1gp1iBaIxHn6kZ0R.lAr2JEGw0BtZXAYY7Mjy0yqgKSUSEYu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_88"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.787439' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_73", "user_id"=>"9"}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 15ms (Views: 1.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_89@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_89@example.jp"], ["encrypted_password", "$2a$04$FOAiDA4XJ1CBPNfh2mu15eYQRjfE77SiguzObQKan459iQ1bKJfnm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_89"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.830030' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_74"], ["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_90@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_90@example.jp"], ["encrypted_password", "$2a$04$n0T/wH4lbOm6Pcav5BIJdOOem0i1hOEn8uATyRMoYwnn4iLliPku2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_90"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.847514' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 13ms (Views: 2.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_91@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_91@example.jp"], ["encrypted_password", "$2a$04$ZDzWdAhinlj517Ub6vZ2tupqWaLL/xZU..fk1A4gtzM7/s1GB19Pq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_91"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.881297' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_76"], ["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_92@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_92@example.jp"], ["encrypted_password", "$2a$04$Wd9zlTRA5YnF9OqPf9IOeOgfakKSpX0GJ6OspZ/FFXex.ITJmqYKy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_92"]] SQL (0.8ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 9]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.901985' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (5.3ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 18ms (Views: 1.3ms | ActiveRecord: 5.7ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_93@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_93@example.jp"], ["encrypted_password", "$2a$04$56pt/Y2mM0RZX2MD636xYuofO7lxImrziLerK.CMPFqrRgdYcmDru"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_93"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:12.943707' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_78"], ["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_94@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (61.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_94@example.jp"], ["encrypted_password", "$2a$04$a5GorDUQiZNi9uP3QjCY7OIZp2rwlxZEswpBmpI.oBmi/4h2wefL."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:12 UTC +00:00], ["user_group_id", 1], ["username", "user_94"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:13.020921' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_79", "user_id"=>"9"}, "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_95@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_95@example.jp"], ["encrypted_password", "$2a$04$oSN5mh/3roUc04VT6aZxbOjurw8bDaQBjIDtodJDodvQtzCQcT.lS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_group_id", 1], ["username", "user_95"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:13.047703' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_80"], ["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_96@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_96@example.jp"], ["encrypted_password", "$2a$04$Piq/kYwN7kPhHKMHCaElJ.aEf7u1MMxyJGTNtzMxk/.IQF6/0UaJK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_group_id", 1], ["username", "user_96"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:13.065785' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_81", "user_id"=>"9"}, "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_97@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (8.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_97@example.jp"], ["encrypted_password", "$2a$04$h0xmvg3bWEo1ulH4Yj4smebKHtAIEJYcH1Wfl0QqMKIH257Stl1.2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_group_id", 1], ["username", "user_97"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:13.106325' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_82"], ["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_98@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_98@example.jp"], ["encrypted_password", "$2a$04$VSClOG5OI7YSu8JEmax2MePhoIOVNK9Palz8f8VnB71nLJ.k.vNhq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_group_id", 1], ["username", "user_98"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:13.129108' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 13ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_99@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_99@example.jp"], ["encrypted_password", "$2a$04$nnRNf12ea2269ppYHhGYReYpiJpFnm1v4GnjZ7IOGmOT8zXdn4zkG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_group_id", 1], ["username", "user_99"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:13.164628' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_84"], ["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 52ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_100@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (64.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_100@example.jp"], ["encrypted_password", "$2a$04$VgwFZT06LqMLdV4W.8qFE.nE24QX/ldYpYYnG25NbEDiKFy9hD6fG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_group_id", 1], ["username", "user_100"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:13.310261' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_85"], ["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 16ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_101@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_101@example.jp"], ["encrypted_password", "$2a$04$YM6IuyrHObyJ1E/2zXSaW.BBRNPT5ntRoewe1exmbVdA9sHxpV1Tm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_group_id", 1], ["username", "user_101"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:13.357148' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_86"], ["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 7ms (Views: 1.2ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_102@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_102@example.jp"], ["encrypted_password", "$2a$04$uSWV7jd7OqgCIp3dxsW3GOTAD6xnW.UHxfXwhdKkIaSjFSw3xDLyW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_group_id", 1], ["username", "user_102"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:13.391136' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_87"], ["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 25ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.9ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_103@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_103@example.jp"], ["encrypted_password", "$2a$04$/XIpBcVEUVaEFqsAZrKAfeWCbLbHLB1IDjcV93zkjoCB9OAjyDzui"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_group_id", 1], ["username", "user_103"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:13.454257' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_88"], ["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 14ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_104@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_104@example.jp"], ["encrypted_password", "$2a$04$.r5Vvkm78YKHh6/XXGDtS./2hqajd9qowA3JcoaLniu5SvvOevuzm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_group_id", 1], ["username", "user_104"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:13.495120' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_89"], ["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 15ms (Views: 1.3ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_105@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (4.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_105@example.jp"], ["encrypted_password", "$2a$04$83BjBeo8T93N/23iO0/fWujdthGGlAi9pm/yXzXrKLRMZkU3aTUaG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_group_id", 1], ["username", "user_105"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:13.540557' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_90"], ["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 13ms (Views: 1.3ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_106@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_106@example.jp"], ["encrypted_password", "$2a$04$5D.YE7r0GG5PLG6tDl4TAuw7reNojmbVOhYiNbcz8nbCHGXcLtfmO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_group_id", 1], ["username", "user_106"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:13.632293' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_91"], ["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 3 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/users/3/questions Completed 302 Found in 16ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_107@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_107@example.jp"], ["encrypted_password", "$2a$04$MZUaV5SxLVh8NRoGWOdNGO/Dlfkn.PL6pmz2OzKUarP8chcPCbbsG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_group_id", 1], ["username", "user_107"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:13.673103' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_92"], ["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.3ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_108@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (4.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_108@example.jp"], ["encrypted_password", "$2a$04$KgLsPfgCBbzjJZqUKSnapeZgZltiK0gArl4dxS/P/VNFUrkWM9Viu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_group_id", 1], ["username", "user_108"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:13.711523' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_93"], ["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 10ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_109@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_109@example.jp"], ["encrypted_password", "$2a$04$qebMXzcryOdehU4413h2n.1VxJ8aDPGOrSAbjnXMFFBlqZ3zg8bRC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_group_id", 1], ["username", "user_109"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:13.749860' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_94"], ["created_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Fixture Delete (0.6ms) DELETE FROM "answer_has_items" Fixture Insert (0.2ms) INSERT INTO "answer_has_items" ("updated_at", "item_id", "answer_id", "id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 1, 1, 1, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answer_has_items" ("updated_at", "item_id", "answer_id", "id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 2, 2, 2, '2007-12-25 17:28:47.252993') Fixture Delete (0.2ms) DELETE FROM "answers" Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 1, 1, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 2, 2, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 3, 3, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 4, 4, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 5, 5, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 6, 1, '2007-12-25 17:28:47.252993') Fixture Delete (0.1ms) DELETE FROM "questions" Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'Yahoo', 1, 1, 't', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 2, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 3, 3, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 4, 4, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:48.252993', 'test', 5, 5, 't', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 6, 1, 'f', '2007-12-25 17:28:47.252993') Fixture Delete (0.1ms) DELETE FROM "roles" Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Guest', 'Guest', 1, NULL, '2011-12-28 21:49:54', '2011-12-28 21:49:54') Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('User', 'User', 2, NULL, '2011-12-28 21:49:54', '2011-12-28 21:49:54') Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Librarian', 'Librarian', 3, NULL, '2011-12-28 21:49:54', '2011-12-28 21:49:54') Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Administrator', 'Administrator', 4, NULL, '2011-12-28 21:49:54', '2011-12-28 21:49:54') Fixture Delete (0.1ms) DELETE FROM "user_groups" Fixture Insert (0.1ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('(not specified)', '(not specified)', '2007-12-13 12:00:51.564542', 1, '', '2007-12-13 12:00:01.674976', 1) Fixture Insert (0.1ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('User', 'User', '2007-12-22 18:14:56.836548', 2, '', '2007-12-22 18:14:40.173954', 2) Fixture Insert (0.1ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('Faculty', 'Faculty', '2007-12-22 18:15:05.134351', 3, '', '2007-12-22 18:15:05.126457', 3) Fixture Delete (0.1ms) DELETE FROM "user_has_roles" Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (1, 4, '2011-12-28 21:49:54', '2011-12-28 21:49:54', 135138680) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (2, 3, '2011-12-28 21:49:54', '2011-12-28 21:49:54', 344583537) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (3, 2, '2011-12-28 21:49:54', '2011-12-28 21:49:54', 206669143) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (4, 3, '2011-12-28 21:49:54', '2011-12-28 21:49:54', 226540757) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (5, 2, '2011-12-28 21:49:54', '2011-12-28 21:49:54', 358143215) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (6, 2, '2011-12-28 21:49:54', '2011-12-28 21:49:54', 576709754) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (7, 2, '2011-12-28 21:49:54', '2011-12-28 21:49:54', 1010528733) Fixture Delete (0.2ms) DELETE FROM "users" Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:16:30.163731', '$2a$10$vHohD1WflnTIqAa8zMkF9evwAgIZRw3XuR4d3bi29M.jph/MB/AJi', 2, 1, NULL, 'admin', 'tanabe@kamata.lib.teu.ac.jp', '2007-11-19 07:58:32.111941', 4) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 03:41:16.337474', '$2a$10$9O2VuTccN4gHq36ARg0QReSrb1D7WrBBhZZ759RM9moHbB0W5zCzS', 1, 2, NULL, 'librarian1', 'librarian1@kamata.lib.teu.ac.jp', '2007-11-19 07:58:33.172441', 1) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', '$2a$10$JthS59A0BNkDOoFpCXM0V.GhhffKaoWKbzpPahYp/vTFrOyM7h/uW', 1, 3, NULL, 'user1', 'user1@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "created_at", "required_role_id") VALUES ('2008-05-31 03:42:23.340575', '$2a$10$YmmTGrYQ1Ir6oc7wXnp.GuNeO1eYLoP3sv8wMSIrTdaGw2BPwRrpS', 1, 4, NULL, 'librarian2', '2008-01-18 03:24:04.222344', 1) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "created_at", "required_role_id") VALUES ('2008-05-31 03:42:44.711117', '$2a$10$i7UjJhLVrJM/J7qaTwW39OXw1NiwowUEbtNHVDV0sqMLjX9.UO9ca', 1, 5, NULL, 'user2', '2008-01-18 04:29:06.922728', 2) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', 'cc53de0c2d9a1a228daa9a673ec824473747e17507a6c3c4f7e5eff8821f531d4b9e23616b3ddc66fe17006b2298a556fbd567ac080e87f00f37eef8cee6c417', 1, 6, NULL, 'user3', 'user3@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', 'cc53de0c2d9a1a228daa9a673ec824473747e17507a6c3c4f7e5eff8821f531d4b9e23616b3ddc66fe17006b2298a556fbd567ac080e87f00f37eef8cee6c417', 1, 7, NULL, 'user4', 'user4@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3) User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by AnswersController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers" Rendered /Users/kosuke/enju_question/app/views/answers/index.html.erb within layouts/application (4.9ms) Completed 200 OK in 193ms (Views: 31.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "answers"  User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by AnswersController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers"  Completed 200 OK in 9ms (Views: 1.3ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "answers" User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 403 Forbidden in 8ms (Views: 2.2ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (2.3ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 403 Forbidden in 10ms (Views: 1.3ms | ActiveRecord: 2.5ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML Parameters: {"user_id"=>"user1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3 Completed 200 OK in 28ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#index as HTML Parameters: {"user_id"=>"user2"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2' LIMIT 1 Completed 403 Forbidden in 10ms (Views: 1.4ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as RSS Parameters: {"user_id"=>"user1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3 Completed 200 OK in 92ms (Views: 83.7ms | ActiveRecord: 0.6ms | Solr: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by AnswersController#index as HTML Parameters: {"question_id"=>"2", "user_id"=>"librarian1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'librarian1' LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "2"]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Completed 403 Forbidden in 30ms (Views: 1.2ms | ActiveRecord: 0.8ms | Solr: 0.0ms) Processing by AnswersController#index as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Processing by AnswersController#index as HTML Parameters: {"question_id"=>"1"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 1 Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Processing by AnswersController#index as HTML Parameters: {"question_id"=>"5"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 5 Completed 200 OK in 9ms (Views: 1.3ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Processing by AnswersController#index as RSS Parameters: {"question_id"=>"2"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "2"]] Completed 406 Not Acceptable in 5ms Processing by AnswersController#index as RSS Parameters: {"question_id"=>"5"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 5 Completed 200 OK in 8ms (Views: 1.4ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_1@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (8.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_1@example.jp"], ["encrypted_password", "$2a$04$oIAvXsdhNwHX3.8C53WFvOH6DcRJMvxmbUY/Dkjx6lr2RcdLN8E1O"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_group_id", 1], ["username", "user_1"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:55.349451' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (2.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_1"], ["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_2@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_2@example.jp"], ["encrypted_password", "$2a$04$49GgcSWGZDDDU47osbB8V.Fcgb50fM6sjvqtozPXuSuL6odS6qZ76"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_group_id", 1], ["username", "user_2"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:55.369477' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_1"], ["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.2ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 12ms (Views: 2.1ms | ActiveRecord: 0.5ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_3@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_3@example.jp"], ["encrypted_password", "$2a$04$Dss0G/MtWzZBB24U480X7eNwFCIMgLQAXqIGMBajOVfpp50vLBdXC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_group_id", 1], ["username", "user_3"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:55.425152' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_2"], ["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_4@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_4@example.jp"], ["encrypted_password", "$2a$04$wc5uNyRgMQiqW0X/iE11wu5FR1070dT.xVFd/qUw4fK6sWy5C/2aW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_group_id", 1], ["username", "user_4"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:55.442352' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_2"], ["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 12ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_5@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_5@example.jp"], ["encrypted_password", "$2a$04$M6CThyaVPce3l0bBe5DuleG28wULm/0iTMHMlQRZI65mQVy6LKLWq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_group_id", 1], ["username", "user_5"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:55.488108' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (52.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_3"], ["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_6@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_6@example.jp"], ["encrypted_password", "$2a$04$j0/kNnvYg4olO4mDRsIxX.sO8PdnpG4i5/aWpSvSpXwe.oA03CEU2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_group_id", 1], ["username", "user_6"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:55.557591' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_3"], ["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 13ms (Views: 1.3ms | ActiveRecord: 0.7ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 16ms (Views: 1.3ms | ActiveRecord: 0.8ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (2.3ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Completed 200 OK in 13ms (Views: 1.3ms | ActiveRecord: 2.8ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Completed 200 OK in 13ms (Views: 1.4ms | ActiveRecord: 1.6ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"4"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 4 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 11ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 8ms (Views: 1.8ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user2", "question_id"=>"2", "id"=>"5"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.4ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"question_id"=>"2", "id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 11ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_7@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_7@example.jp"], ["encrypted_password", "$2a$04$gUbHaz7Ehf4/t8xnxghouejeFtYkrVsQP1oz/UV8bwmJlUlWIkAXS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_group_id", 1], ["username", "user_7"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:55.719285' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_4"], ["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_8@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_8@example.jp"], ["encrypted_password", "$2a$04$aJG6I947YT4rkbOD3vM70.4X0yQM5dGNcPiShPR8uqcRS2F2DXvs2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_group_id", 1], ["username", "user_8"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 9]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:55.735827' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_4"], ["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 10ms (Views: 1.3ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"4"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Redirected to http://test.host/users/sign_in Completed 302 Found in 5ms Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by AnswersController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 5ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 5ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 4ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML Parameters: {"question_id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 7ms (Views: 1.3ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Processing by AnswersController#new as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 4ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_9@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_9@example.jp"], ["encrypted_password", "$2a$04$TZC7LaqkNzCfOb2GZL7IS.Y1GT1QfjzFoPqvOc00L1ILRz5.yjaBm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_group_id", 1], ["username", "user_9"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:55.867648' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_5"], ["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_10@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_10@example.jp"], ["encrypted_password", "$2a$04$Xi44695Z8B.4VphOY8foXObjtcDaxwtKVxyRbsQzT7/Y.0SsWbO0O"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_group_id", 1], ["username", "user_10"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:55.877891' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.4ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_5"], ["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 7ms (Views: 1.4ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_11@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_11@example.jp"], ["encrypted_password", "$2a$04$a0qHgwHyPs8QcXA7UL.PNesYelcfRreXdyOvbU8Vfg1ECnYklJIra"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_group_id", 1], ["username", "user_11"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:55.901593' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_6"], ["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_12@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_12@example.jp"], ["encrypted_password", "$2a$04$8Y281ChG03rhxq06i6cya.CMbq5TmP/H17Z8Z3HaFK0GmdSrnBORu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_group_id", 1], ["username", "user_12"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:55.912077' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.4ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_6"], ["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Completed 403 Forbidden in 40ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_13@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_13@example.jp"], ["encrypted_password", "$2a$04$TQ.Lrc4lEaBpcPFkR9TstedSwU.CTLuvAv45NdrqkRFfMPoVht5xK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_group_id", 1], ["username", "user_13"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:55.968834' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_7"], ["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_14@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_14@example.jp"], ["encrypted_password", "$2a$04$8ZJAzMFqfGw54rHebH/RleaEabqAUNzLndaTS5BENYrHrHKrNI5Ae"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_group_id", 1], ["username", "user_14"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:55.979694' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.4ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_7"], ["created_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:55 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Completed 403 Forbidden in 7ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"question_id"=>"1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"question_id"=>"1", "id"=>"4"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 4 LIMIT 1 Completed 403 Forbidden in 6ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"100"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "100"]] Completed 404 Not Found in 4ms (Views: 0.7ms | ActiveRecord: 0.1ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user2", "question_id"=>"2", "id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 7ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_15@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_15@example.jp"], ["encrypted_password", "$2a$04$OsaG74bllXyTtqRfvlCz0Ok0Zf.lqWQkmNWiFKrezDxZnpylaIqN."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_group_id", 1], ["username", "user_15"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:56.054964' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_8"], ["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_16@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_16@example.jp"], ["encrypted_password", "$2a$04$Grei2hV9rvMy4GcXtTAN8enNVPEirBGcmETngu6n48kz85r7Pdv.m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_group_id", 1], ["username", "user_16"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:56.064913' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.4ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_8"], ["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 38ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_17@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_17@example.jp"], ["encrypted_password", "$2a$04$7jIQDvnYmWd8GD53XCk1HuE8x.z/6.nkB9PVFTM4mDbDBW3HbgzGe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_group_id", 1], ["username", "user_17"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:56.118811' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_9"], ["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_18@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_18@example.jp"], ["encrypted_password", "$2a$04$Qs01zrQHmUMNOs7AL9C57uU3BSr7jlIttAFKKgP2NupiSBT5DDpFK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_group_id", 1], ["username", "user_18"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:56.129377' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"question_id"=>"1", "body"=>"hoge"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 SQL (0.6ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "hoge"], ["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 1], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["url_list", nil], ["user_id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/7 Completed 302 Found in 12ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_19@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_19@example.jp"], ["encrypted_password", "$2a$04$Upno.got8hCGg7xLuRjDU.L1l8V77xU7roPpg1D1RO5Mfc0sp6itO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_group_id", 1], ["username", "user_19"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:56.153728' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_10"], ["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_20@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_20@example.jp"], ["encrypted_password", "$2a$04$ycxUl4zxsQBKzhkTfyAvx.4m6ndxJc6h/zX1ou/PBAF/Qrv76QFTi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_group_id", 1], ["username", "user_20"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:56.164061' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"hoge"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 6ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_21@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_21@example.jp"], ["encrypted_password", "$2a$04$BKNgi5EQ3np57YbSFi82ne0UcA1VNzLovfIsIUyEfWSoYSs5MGh1W"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_group_id", 1], ["username", "user_21"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:56.184159' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_11"], ["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_22@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_22@example.jp"], ["encrypted_password", "$2a$04$bac3aELwNKsv4aH49eq3E.9lOjymC9/MUQGrZa/GhrkQ3CVioKXXq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_group_id", 1], ["username", "user_22"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:56.194431' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"question_id"=>"1", "body"=>"hoge"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 SQL (0.6ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "hoge"], ["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 1], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["url_list", nil], ["user_id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/7 Completed 302 Found in 12ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_23@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_23@example.jp"], ["encrypted_password", "$2a$04$iT6eP8RYQ1CuQu4AZJqqj.KdFZCaHPvYCCBMiB73qGYcf9gDuFoHC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_group_id", 1], ["username", "user_23"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:56.218972' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_12"], ["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (31.7ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_24@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_24@example.jp"], ["encrypted_password", "$2a$04$qEfofHO2P5Vol9qiZC2Muuwz2ZAH1roUsOu2.G4py7IeS3bfg3mWG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_group_id", 1], ["username", "user_24"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:56.261397' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"answer_12", "question_id"=>"7", "user_id"=>"9"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 5ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_25@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_25@example.jp"], ["encrypted_password", "$2a$04$Xiax0OTahF7hhSEFoJ7khOkABEwKJPm4OBXsnwkAjX6ioDfGOoC3O"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_group_id", 1], ["username", "user_25"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:56.279453' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_13"], ["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_26@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_26@example.jp"], ["encrypted_password", "$2a$04$B9DQuAv.TzZrPMq/Zcekyez8FZGassIgNSvm/3Ep6uebBCQEMygoO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_group_id", 1], ["username", "user_26"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:56.290004' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"answer_13", "question_id"=>"7", "user_id"=>"9"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 5ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_27@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_27@example.jp"], ["encrypted_password", "$2a$04$JFPhJT7LpsolwaY2nKmJgeNZtaXhRU4dwvNZPCRpKpAOJj6AkIrem"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_group_id", 1], ["username", "user_27"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:56.306894' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_14"], ["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_28@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_28@example.jp"], ["encrypted_password", "$2a$04$k3Ln8gjcOzkEkloUhxom4e11f3exxuDCdJnqszdby/l2SakGMVX8O"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_group_id", 1], ["username", "user_28"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:56.317143' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 5ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_29@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_29@example.jp"], ["encrypted_password", "$2a$04$UeOllZ1aQrKmpTYy2267iOiiB/WpD9RTQafwKiCziB2dLcmip.Alu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_group_id", 1], ["username", "user_29"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:56.334682' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_15"], ["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_30@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_30@example.jp"], ["encrypted_password", "$2a$04$1UKwuJK5tmeHfG6wpArNZuITnNOSRuYFswJA07M87PhqgqCUVIQYe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_group_id", 1], ["username", "user_30"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:49:56 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:49:56.345466' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 5ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 46ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 10ms Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 10ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 10ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 10ms Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 11ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"missing"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 5ms (Views: 0.8ms | ActiveRecord: 0.1ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user2", "id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 6ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "question_id"=>"1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 45ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 11ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 10ms Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"1"} Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 4ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"1"} Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 4ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#destroy as HTML Parameters: {"id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 AnswerHasItem Load (0.1ms) SELECT "answer_has_items".* FROM "answer_has_items" WHERE "answer_has_items"."answer_id" = 3 SQL (0.3ms) DELETE FROM "answers" WHERE "answers"."id" = ? [["id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Redirected to http://test.host/questions/1/answers Completed 302 Found in 8ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#destroy as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 7ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Processing by AnswersController#destroy as HTML Parameters: {"id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 4ms User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 SOLR Request (48.1ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (13.5ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 165ms (Views: 5.5ms | ActiveRecord: 0.4ms | Solr: 61.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 SOLR Request (11.6ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (10.9ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 39ms (Views: 1.4ms | ActiveRecord: 0.4ms | Solr: 22.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#index as RSS User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 SOLR Request (7.5ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (8.2ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 28ms (Views: 2.1ms | ActiveRecord: 0.3ms | Solr: 15.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 SOLR Request (8.2ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (10.5ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 32ms (Views: 1.5ms | ActiveRecord: 0.4ms | Solr: 18.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#index as RSS User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 SOLR Request (6.5ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (12.8ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 36ms (Views: 1.5ms | ActiveRecord: 0.3ms | Solr: 19.3ms) Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."shared" = 't' ORDER BY id DESC, updated_at LIMIT 10 OFFSET 0 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#index as RSS Parameters: {"user_id"=>"user1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 SOLR Request (8.0ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser1&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (5.5ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser1&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 26ms (Views: 1.5ms | ActiveRecord: 0.5ms | Solr: 13.4ms) Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."user_id" = 3 ORDER BY id DESC User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by QuestionsController#index as HTML Parameters: {"user_id"=>"user2"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2' LIMIT 1 SOLR Request (6.5ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (8.2ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 31ms (Views: 4.1ms | ActiveRecord: 0.5ms | Solr: 14.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by QuestionsController#index as RSS Parameters: {"user_id"=>"user2"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2' LIMIT 1 SOLR Request (66.4ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (17.9ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 97ms (Views: 1.5ms | ActiveRecord: 0.5ms | Solr: 84.3ms) Processing by QuestionsController#index as HTML SOLR Request (8.6ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (5.8ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 24ms (Views: 1.4ms | ActiveRecord: 0.0ms | Solr: 14.4ms) Processing by QuestionsController#index as HTML Parameters: {"query"=>"Yahoo"} SOLR Request (19.6ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (5.9ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 55ms (Views: 1.3ms | ActiveRecord: 0.0ms | Solr: 25.5ms) Processing by QuestionsController#index as XML Parameters: {"query"=>"Yahoo", "mode"=>"crd"} SOLR Request (10.4ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (11.6ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 51ms (Views: 5.8ms | ActiveRecord: 0.0ms | Solr: 22.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (2.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_31@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_31@example.jp"], ["encrypted_password", "$2a$04$IoUA4VABQLnG/0v9L49U..4ElJlEgj8/qZWHGq5ioh94s3HPkFku2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_group_id", 1], ["username", "user_31"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:00.510122' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_16"], ["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 14ms (Views: 4.1ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_32@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (54.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_32@example.jp"], ["encrypted_password", "$2a$04$96ACnnsJxotsbwrL9uU4HOSnyuOReLBkl4IFS61Zb4n.MCDeIU2Gi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_group_id", 1], ["username", "user_32"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:00.608904' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_17"], ["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_33@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_33@example.jp"], ["encrypted_password", "$2a$04$duwMJ9hGN6SGwnmpue0AH.qH93Uxpnd4H.ZteTCamnTI2D5TJeGn2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_group_id", 1], ["username", "user_33"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:00.649511' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_18"], ["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 200 OK in 11ms (Views: 1.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_34@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_34@example.jp"], ["encrypted_password", "$2a$04$EKi6HgRjXLUMv9/Mb1EtiOzZWtlWaDcSvEXs3ZNGCZAsLL4Zl/fqW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_group_id", 1], ["username", "user_34"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:00.687904' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.3ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_19"], ["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.2ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"5"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 200 OK in 13ms (Views: 1.5ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_35@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (3.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_35@example.jp"], ["encrypted_password", "$2a$04$5MN3GoNeNcGo0VjxGED8/.sXab8CWvEcpUOBRvvsjHp10khlx.HUi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_group_id", 1], ["username", "user_35"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:00.727636' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_20"], ["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_36@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_36@example.jp"], ["encrypted_password", "$2a$04$BA/OeNd/lW9WWFSBzRXqTeuvjRrXfFoSyTsgT3iWRGtoZpCdczjb."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_group_id", 1], ["username", "user_36"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:00.760017' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.3ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_21"], ["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 9ms (Views: 1.2ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_37@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_37@example.jp"], ["encrypted_password", "$2a$04$2DKA85HoRymGpuBzBMGuD.XHIGNFmheTN6J4MuW51AFaRGYuMctFm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_group_id", 1], ["username", "user_37"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:00.788509' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_22"], ["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 5]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_38@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (33.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_38@example.jp"], ["encrypted_password", "$2a$04$b9ldQ3CmmVmCVHC86Vg8BeXLU.WDni0sx6wFz5tiUvPlMlGfVB9KC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_group_id", 1], ["username", "user_38"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:00.842588' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_23"], ["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.0ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_39@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_39@example.jp"], ["encrypted_password", "$2a$04$CGz7.3E9AXOVawJFIu6UduZ05qdGHBnLs4TPRERXBY2PsBlo5R2ha"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_group_id", 1], ["username", "user_39"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:00.862269' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_24"], ["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#show as XML Parameters: {"mode"=>"crd", "id"=>"7"} Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.0ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 7ms (Views: 1.3ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Processing by QuestionsController#new as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 4ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_40@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_40@example.jp"], ["encrypted_password", "$2a$04$bKkMEMfXCK1qnms0raYnIu4DtXdtzqLrbAyrfg2K6nK6Rwmz3qnJi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_group_id", 1], ["username", "user_40"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:00.924142' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_25"], ["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 7ms (Views: 1.3ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_41@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_41@example.jp"], ["encrypted_password", "$2a$04$zeepRI9FTp5MJ0x01CqeO.jhI6J0ReJmdvet7eq0RXh1EDp/U5H8S"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_group_id", 1], ["username", "user_41"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:00.946154' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_26"], ["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_42@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_42@example.jp"], ["encrypted_password", "$2a$04$AtX.gtKyhASQEUN8JC2j7O0nxbirzAGQWeiQm.negRRi2XmYrHe6q"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_group_id", 1], ["username", "user_42"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:00.967077' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_27"], ["created_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 41ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_43@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_43@example.jp"], ["encrypted_password", "$2a$04$g1tep6IZfOgmnGtu0e63ruLUIRd6yboYGPeLPJ0QDDCOmnfbO6URW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_43"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.021545' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_28"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 7ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_44@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_44@example.jp"], ["encrypted_password", "$2a$04$7iuIwGHeKO2ini350Xxb0eq3GULihJwPgbKj1UOc.07FShpC5sYOm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_44"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.042818' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_29"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"missing"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 5ms (Views: 0.9ms | ActiveRecord: 0.1ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_45@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_45@example.jp"], ["encrypted_password", "$2a$04$vr/ERxdkxcycYBps/bLKDuqz2HlEQuiQfTbGtAGyk7V3DS..vNNDu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_45"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.062173' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_30"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_46@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_46@example.jp"], ["encrypted_password", "$2a$04$ep6DDLRh3/zms9sOODTZq.wukbsqz7odRtj3bbB6jjcR0uqw8H0.m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_46"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.082868' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_31"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 6ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_47@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_47@example.jp"], ["encrypted_password", "$2a$04$orpD2la50GKmSqBkv9M.EuOFeeAQWR7XLDM5YlHir33J3rkdeMx6q"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_47"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.102138' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_32", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_32"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 10ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_48@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_48@example.jp"], ["encrypted_password", "$2a$04$Yj08UasWCCFmvaFwE7sXmev0kaqFs/fNKILBTJReDlbt3ep85GLMO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_48"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.123508' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_33", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (33.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_33"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 42ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_49@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_49@example.jp"], ["encrypted_password", "$2a$04$Xrd/DNE8g03cGWPJjUdlnOfbs1L/KwMfy6kC.I.JHZQRU781DBgpK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_49"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.179505' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_50@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_50@example.jp"], ["encrypted_password", "$2a$04$Rqpm0fq/zeCWJPxNyhWbs.4SzZtTntKhS9H5psbMYTXnMRpzJiFLG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_50"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.198789' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_51@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_51@example.jp"], ["encrypted_password", "$2a$04$RfUt/IS3TUH4.diMJ3Q4He2FU1noS.LKiVk3ut5F8UcGxQ3/HEoTm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_51"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.217598' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_36", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_36"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 9ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_52@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_52@example.jp"], ["encrypted_password", "$2a$04$w7fMilO1bzTYapsiB9IJ7OK/2te7M0tsOzsZruFJEeecF9Cxf3N8a"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_52"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.237678' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_37", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_37"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 9ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_53@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_53@example.jp"], ["encrypted_password", "$2a$04$f0NYGTQGr8LQxO3GZxyhZ.7v/Xvc7PIqxLz8Vq4.sKPyVmh0FANzq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_53"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.259229' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_54@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_54@example.jp"], ["encrypted_password", "$2a$04$tXBMj5GZILKx/xm1fBfow.0EYcBRXuDT4JzlUuD2mcSeBu7S//Z5O"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_54"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.278805' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_55@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_55@example.jp"], ["encrypted_password", "$2a$04$OoSuod1ww6PZoT277F5oK.Q72tDflMsM/nGeAFL8UM9RjiE637mXS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_55"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.298222' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_40", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_40"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 44ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_56@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_56@example.jp"], ["encrypted_password", "$2a$04$nZQFR/D3jRcWL2mKZseL3enMwjESIKMY9/FKQzSf5eYace3a6ypFS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_56"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.354040' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_41", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_41"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 9ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_57@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_57@example.jp"], ["encrypted_password", "$2a$04$H53J0fD5r9YUJM5Z2PglMerDYpPN02SfP/qqA6TMavx3fuqTyNNtO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_57"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.375599' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_58@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_58@example.jp"], ["encrypted_password", "$2a$04$39L5iQ7BSpr0I84wAuuQ.uZQ7YM/.VozJUUSEx5gHWG/cLtByJHkW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_58"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.395202' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_59@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_59@example.jp"], ["encrypted_password", "$2a$04$OoOPfVPr.pO6FroqUurSB.mTfbkAzyGM0rY6S3kvDAVMlUpL9/n1y"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_59"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.414049' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_44", "user_id"=>"8"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 4ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_60@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_60@example.jp"], ["encrypted_password", "$2a$04$2Y1b/BxGGKDOk1ga7eJX5OO2v3kfZIJjyvs6iZ7YKAZ.yMwzgWd.6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_60"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.429911' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_45", "user_id"=>"8"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 4ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_61@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_61@example.jp"], ["encrypted_password", "$2a$04$D6dLYOW0whpZGVIYQ5PyUOyqAzqRRWk0FIp2KK7TC2M12vX4X2Cf6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_61"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.445471' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 4ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_62@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (34.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_62@example.jp"], ["encrypted_password", "$2a$04$tVRnLI8M.4YP9ksmLX.N4O7g6P6htm2Q8aP4cdgv8o1QMpGXfyKX6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_62"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.495291' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 4ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_63@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_63@example.jp"], ["encrypted_password", "$2a$04$CJLnLssA4n7YxZ9dH2flBOy6SGQQLQ09nipi4MGh/qsg2o.oo1IoC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_63"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.511787' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_48"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_64@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_64@example.jp"], ["encrypted_password", "$2a$04$5lVHSfFG/NmHgNRDDaondu59Q/xZSfMQzrTmXxpEvnr/Kiie.yf.e"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_64"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.522087' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_65@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_65@example.jp"], ["encrypted_password", "$2a$04$k5b/aUstbXG2K2K3QqB3rOJ5.tBugKWE.6YD/TlhXRs8tT4DjN.aS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_65"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.542817' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_50"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_66@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_66@example.jp"], ["encrypted_password", "$2a$04$MGVq7Wr6hPYfRpaTla8/oezg3xaemo32A59Gocu8NlWR1AuuLx7nK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_66"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.553169' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{}, "id"=>"missing"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 5ms (Views: 0.8ms | ActiveRecord: 0.1ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_67@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_67@example.jp"], ["encrypted_password", "$2a$04$e1LzcJLFYHJjtSu3hUeQh.X8lxcvLXb3d4HvuZbci8h1OlbtHPg7C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_67"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.569791' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_52"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_68@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_68@example.jp"], ["encrypted_password", "$2a$04$YqqU.BP9OFVhNBDJZSWvHubZNg8Qh3azQWYMbszngf83D/zfKT.8e"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_68"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.580714' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_53", "user_id"=>"9"}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_53', "user_id" = 9, "updated_at" = '2011-12-28 21:50:01.589278' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 8ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_69@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_69@example.jp"], ["encrypted_password", "$2a$04$m6pQnC3sz1ZEkIFe2ysaCO7hv6IvM9UT/zaB2TUtkqJ7r04QvZA6u"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_69"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.600410' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_54"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_70@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_70@example.jp"], ["encrypted_password", "$2a$04$iJNdtmqEv54XMQXxojrn0e10VjdiO5G7bacfo62EK79cSaj1U.D0S"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_70"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.610882' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_55", "user_id"=>"9"}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_55', "user_id" = 9, "updated_at" = '2011-12-28 21:50:01.619157' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 42ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_71@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_71@example.jp"], ["encrypted_password", "$2a$04$Gvee1ckfOXSFYZyOsg5FBuTam52Coc0s0pfh5tR43QWjSCAKiI0VG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_71"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.664618' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_56"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_72@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_72@example.jp"], ["encrypted_password", "$2a$04$jMIfvqXWhgQkZgfnbTsCsulPM0zxEIIk.Zjv8oMg8DWOn3iI4Am5i"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_72"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.674679' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_73@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_73@example.jp"], ["encrypted_password", "$2a$04$Dgn.CbNVpsAjFeKva3QgkOCd/ZvVtSRFKJrn2w9Ft4HYeSGvgV8OO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_73"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.694811' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_58"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_74@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_74@example.jp"], ["encrypted_password", "$2a$04$RgVzWDKjpjhrTE/LQ.VTg.wYAfV97.4O41wP8u.eQSvF5dqzsfUXa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_74"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.705664' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_75@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_75@example.jp"], ["encrypted_password", "$2a$04$3KIT9ZQnbOSYGG6nYVvsGeEt6SVhGgVgQ2DwPWqL4ie1EqopZ.pFm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_75"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.726306' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_60"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_76@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_76@example.jp"], ["encrypted_password", "$2a$04$mWi2k7pMpnQjDpKSEIsiUe.sCv0Dr/hiajpyh5SpUBdHvqmmJ9lHy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_76"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.737220' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_61", "user_id"=>"9"}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_61', "user_id" = 9, "updated_at" = '2011-12-28 21:50:01.749186' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 12ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_77@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_77@example.jp"], ["encrypted_password", "$2a$04$pIDLoTd35Ahj3e2c2wnBTeEzLiEAQ0Mwapo/6W32s/CuoSq8TsK5K"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_77"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.765079' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_62"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_78@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_78@example.jp"], ["encrypted_password", "$2a$04$EB9vmF2BdjkvsQJ4kChKGumltKAwi14HI.6SAsCGMMiMb34aIa4LW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_78"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.780584' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_63", "user_id"=>"9"}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_63', "user_id" = 9, "updated_at" = '2011-12-28 21:50:01.793829' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 13ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_79@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (71.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_79@example.jp"], ["encrypted_password", "$2a$04$o7K85IrfbD0XUCGYefInguqHrGdghhBz4.rk0bez0HEbNPKKpbKD."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_79"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.884562' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_64"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_80@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_80@example.jp"], ["encrypted_password", "$2a$04$Wg.4MzEr9LMCrVW0Vyajnucr0sXeDZPExnL/VJGWh3EB5GPlpBqFC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_80"]] SQL (0.8ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.903717' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_81@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_81@example.jp"], ["encrypted_password", "$2a$04$//b68yX/k.o5B3XoZkUzz.fJWUYaeS/nm7hTIAI4zK2XUA3qh6g4."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_81"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.940653' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_66"], ["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (1.4ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_82@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_82@example.jp"], ["encrypted_password", "$2a$04$ayD/64PpI498mguZvDd5XO2jZ9CArc10k.u0TwFdcafkl4s9IPCu2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_82"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:01.963579' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_83@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (10.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_83@example.jp"], ["encrypted_password", "$2a$04$5IycSsvQ66y/hP44JmEJLOI6NNLBY.7HFFcewwe.YOfkCq2lgnHne"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:01 UTC +00:00], ["user_group_id", 1], ["username", "user_83"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.007791' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_68"], ["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_84@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_84@example.jp"], ["encrypted_password", "$2a$04$LpLdM9E0emFeY6efqpJujOCiMD67BOZBK6nA8ozuezyypoiUGAm9m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_84"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.025557' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/3 Completed 302 Found in 13ms Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 3]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_85@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_85@example.jp"], ["encrypted_password", "$2a$04$FzKy/oOf0B.ewpJcdM.17e4rcCMO.0uGUIoTaK/FpKgLXua.TMnyC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_85"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.065397' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_70"], ["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_86@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_86@example.jp"], ["encrypted_password", "$2a$04$uyAT4gLgv37YBSuUAIES1.8zdY54P/9/okMepP0JtGeMQDlcThMNy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_86"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.083396' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_71", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.3ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_87@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (63.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_87@example.jp"], ["encrypted_password", "$2a$04$3jb3xKXynMb3LqeegFT1qufD4RgFdGp4s4yt7QV33XLwnNHpC.dS6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_87"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.175605' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_72"], ["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_88@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_88@example.jp"], ["encrypted_password", "$2a$04$0LPDp8gjkB0kBcqJDIbUduTjdrGTNJwQWrTcNCQCGKuxWxMPpzeDS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_88"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.193098' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_73", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_89@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_89@example.jp"], ["encrypted_password", "$2a$04$V1obBO35m6NI3dpbDnbjs.0xmvpgCiUSDOGt3Hp/6i7JnYqspguZK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_89"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.230637' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_74"], ["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_90@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_90@example.jp"], ["encrypted_password", "$2a$04$HrGD9PvUKMdO3Hg/xI90Du6PO1WHxK/tixl2vuDeqbce02sfTb0P."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_90"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.247324' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_91@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_91@example.jp"], ["encrypted_password", "$2a$04$ssZz.3lSQMIywyVsYP86segYkWh6ZqXlHD1RbpHZX/O8Ga31WoAZu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_91"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.280648' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_76"], ["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_92@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_92@example.jp"], ["encrypted_password", "$2a$04$2GXuHk6QRf0chQaIOc2ajucGoOVKAO6bH3/ndPdBDfzJEorAYiTl2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_92"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.298569' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 14ms (Views: 1.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_93@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_93@example.jp"], ["encrypted_password", "$2a$04$d9jNuK/axB2dsGEK/If0RO/WmC8u6/fPQGZtGgKi/iGoaQqnpDtsm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_93"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.333370' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_78"], ["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_94@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_94@example.jp"], ["encrypted_password", "$2a$04$VcnyDeqHRPMT5T6c4xAWWuH08qX0IYIzpoqWl04GilfQxjYGzm6C6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_94"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.351090' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_79", "user_id"=>"9"}, "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 10ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_95@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (58.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_95@example.jp"], ["encrypted_password", "$2a$04$oQdjAAVcrtLwMn9kCVn4C.hf2/GT3Ue.3qf7uwUDmdLWzMTnQMoWu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_95"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.435016' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_80"], ["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_96@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_96@example.jp"], ["encrypted_password", "$2a$04$AT8evog8U4mzdSIYR9TBrunjoAjK/3usJCaoO7KYI9HVWrbT2LGTa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_96"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.453512' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_81", "user_id"=>"9"}, "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_97@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_97@example.jp"], ["encrypted_password", "$2a$04$hnt644gZMqtbitL5VerEbOnNmUdMtK617BUeAxzhOgIDPG4nEV.fK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_97"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.483862' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_82"], ["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_98@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_98@example.jp"], ["encrypted_password", "$2a$04$aROu6gHTgOW8ZMyn4gU5Nut2vjRvgqlY/1s55MJfBkaPbdIA1s44u"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_98"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.503682' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 11ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_99@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_99@example.jp"], ["encrypted_password", "$2a$04$y/dzGN3nOc/0HV89C3FLrek0gBiFYdkI73iLM5XWyXQyTjiOIZRvm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_99"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.533257' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_84"], ["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 29ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_100@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_100@example.jp"], ["encrypted_password", "$2a$04$mG1RIBCZOuPDVCaX7PvhZ.VnQqf01CQQzAgSmU/B3ScGGJSCv96Ru"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_100"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.584959' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_85"], ["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 70ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_101@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_101@example.jp"], ["encrypted_password", "$2a$04$MPYWpvW1PtkjpH1f3xkhleke.hS7Jf.oDPvuYInsscGBw/JQfIIhG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_101"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.681725' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_86"], ["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 8ms (Views: 1.7ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_102@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (5.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_102@example.jp"], ["encrypted_password", "$2a$04$0T0WCl2d2TYZIxUVuQ9C3u9LfNSXlYFIvU8A2L5q/mW9yvLcHO0GW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_102"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.717418' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_87"], ["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.2ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 26ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_103@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (4.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_103@example.jp"], ["encrypted_password", "$2a$04$btfgpUj7ML0oMEvwpznnbONmHdC9Mf4gT8hwI6/CVxExfCPM2diLu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_103"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.772595' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_88"], ["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.2ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 19ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_104@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_104@example.jp"], ["encrypted_password", "$2a$04$VVN4Ge7EqLCHqnicHofBzuf3gRxobjubbZIMR9T.DdW/qkvZxeSzy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_104"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.824015' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_89"], ["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.5ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_105@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_105@example.jp"], ["encrypted_password", "$2a$04$fHmPDTdvx.fCBI97BC5LzOkYdvJMEPFzUsqzIfjnHdvtaxhXINd/C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_105"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.865034' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_90"], ["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 18ms (Views: 1.3ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_106@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_106@example.jp"], ["encrypted_password", "$2a$04$9O.G1dc2X8bjtt9qWBObE.z2EgkK195KBAhbIOkyY14clyDXdqEZq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_group_id", 1], ["username", "user_106"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:02.905938' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_91"], ["created_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:02 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 3 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/users/3/questions Completed 302 Found in 77ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_107@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_107@example.jp"], ["encrypted_password", "$2a$04$489szuBTSN0dlexB5/LAd.CqUiq.RUS17PK5DXfkGMEgSUwEv8gnq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["user_group_id", 1], ["username", "user_107"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:03.014482' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_92"], ["created_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["user_id", 8]]  (0.2ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"5"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 11ms (Views: 1.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_108@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_108@example.jp"], ["encrypted_password", "$2a$04$OVJ/3f67PvA8Zyt6qwZ55.zp3HnVoR6tZbI7PXEifP7n5tFoz7L8W"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["user_group_id", 1], ["username", "user_108"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:03.054528' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_93"], ["created_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_109@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_109@example.jp"], ["encrypted_password", "$2a$04$KrnFShogett5vjW/pDpeJ.ET1nUrGYT5uZou2GgQfykGWIxwMziM2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["user_group_id", 1], ["username", "user_109"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:50:03.090402' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (6.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_94"], ["created_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:50:03 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 1]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 1 ORDER BY id DESC LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 1 ORDER BY id DESC LIMIT 1 Fixture Delete (0.4ms) DELETE FROM "answer_has_items" Fixture Insert (0.2ms) INSERT INTO "answer_has_items" ("updated_at", "item_id", "answer_id", "id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 1, 1, 1, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answer_has_items" ("updated_at", "item_id", "answer_id", "id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 2, 2, 2, '2007-12-25 17:28:47.252993') Fixture Delete (0.2ms) DELETE FROM "answers" Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 1, 1, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 2, 2, '2007-12-25 17:28:47.252993') Fixture Insert (0.2ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 3, 3, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 4, 4, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 5, 5, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 6, 1, '2007-12-25 17:28:47.252993') Fixture Delete (0.1ms) DELETE FROM "questions" Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'Yahoo', 1, 1, 't', '2007-12-25 17:28:47.252993') Fixture Insert (0.5ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 2, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 3, 3, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 4, 4, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:48.252993', 'test', 5, 5, 't', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 6, 1, 'f', '2007-12-25 17:28:47.252993') Fixture Delete (0.1ms) DELETE FROM "roles" Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Guest', 'Guest', 1, NULL, '2011-12-28 21:52:11', '2011-12-28 21:52:11') Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('User', 'User', 2, NULL, '2011-12-28 21:52:11', '2011-12-28 21:52:11') Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Librarian', 'Librarian', 3, NULL, '2011-12-28 21:52:11', '2011-12-28 21:52:11') Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Administrator', 'Administrator', 4, NULL, '2011-12-28 21:52:11', '2011-12-28 21:52:11') Fixture Delete (0.1ms) DELETE FROM "user_groups" Fixture Insert (0.1ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('(not specified)', '(not specified)', '2007-12-13 12:00:51.564542', 1, '', '2007-12-13 12:00:01.674976', 1) Fixture Insert (0.1ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('User', 'User', '2007-12-22 18:14:56.836548', 2, '', '2007-12-22 18:14:40.173954', 2) Fixture Insert (0.1ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('Faculty', 'Faculty', '2007-12-22 18:15:05.134351', 3, '', '2007-12-22 18:15:05.126457', 3) Fixture Delete (0.1ms) DELETE FROM "user_has_roles" Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (1, 4, '2011-12-28 21:52:11', '2011-12-28 21:52:11', 135138680) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (2, 3, '2011-12-28 21:52:11', '2011-12-28 21:52:11', 344583537) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (3, 2, '2011-12-28 21:52:11', '2011-12-28 21:52:11', 206669143) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (4, 3, '2011-12-28 21:52:11', '2011-12-28 21:52:11', 226540757) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (5, 2, '2011-12-28 21:52:11', '2011-12-28 21:52:11', 358143215) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (6, 2, '2011-12-28 21:52:11', '2011-12-28 21:52:11', 576709754) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (7, 2, '2011-12-28 21:52:11', '2011-12-28 21:52:11', 1010528733) Fixture Delete (0.2ms) DELETE FROM "users" Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:16:30.163731', '$2a$10$vHohD1WflnTIqAa8zMkF9evwAgIZRw3XuR4d3bi29M.jph/MB/AJi', 2, 1, NULL, 'admin', 'tanabe@kamata.lib.teu.ac.jp', '2007-11-19 07:58:32.111941', 4) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 03:41:16.337474', '$2a$10$9O2VuTccN4gHq36ARg0QReSrb1D7WrBBhZZ759RM9moHbB0W5zCzS', 1, 2, NULL, 'librarian1', 'librarian1@kamata.lib.teu.ac.jp', '2007-11-19 07:58:33.172441', 1) Fixture Insert (0.2ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', '$2a$10$JthS59A0BNkDOoFpCXM0V.GhhffKaoWKbzpPahYp/vTFrOyM7h/uW', 1, 3, NULL, 'user1', 'user1@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "created_at", "required_role_id") VALUES ('2008-05-31 03:42:23.340575', '$2a$10$YmmTGrYQ1Ir6oc7wXnp.GuNeO1eYLoP3sv8wMSIrTdaGw2BPwRrpS', 1, 4, NULL, 'librarian2', '2008-01-18 03:24:04.222344', 1) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "created_at", "required_role_id") VALUES ('2008-05-31 03:42:44.711117', '$2a$10$i7UjJhLVrJM/J7qaTwW39OXw1NiwowUEbtNHVDV0sqMLjX9.UO9ca', 1, 5, NULL, 'user2', '2008-01-18 04:29:06.922728', 2) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', 'cc53de0c2d9a1a228daa9a673ec824473747e17507a6c3c4f7e5eff8821f531d4b9e23616b3ddc66fe17006b2298a556fbd567ac080e87f00f37eef8cee6c417', 1, 6, NULL, 'user3', 'user3@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', 'cc53de0c2d9a1a228daa9a673ec824473747e17507a6c3c4f7e5eff8821f531d4b9e23616b3ddc66fe17006b2298a556fbd567ac080e87f00f37eef8cee6c417', 1, 7, NULL, 'user4', 'user4@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3) User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by AnswersController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers" Rendered /Users/kosuke/enju_question/app/views/answers/index.html.erb within layouts/application (5.1ms) Completed 200 OK in 157ms (Views: 41.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "answers"  User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by AnswersController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers"  Completed 200 OK in 8ms (Views: 1.3ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "answers" User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 403 Forbidden in 14ms (Views: 8.4ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 403 Forbidden in 8ms (Views: 1.2ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML Parameters: {"user_id"=>"user1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.3ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3 Completed 200 OK in 24ms (Views: 3.0ms | ActiveRecord: 0.8ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#index as HTML Parameters: {"user_id"=>"user2"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2' LIMIT 1 Completed 403 Forbidden in 11ms (Views: 1.2ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as RSS Parameters: {"user_id"=>"user1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3 Completed 200 OK in 72ms (Views: 18.0ms | ActiveRecord: 0.6ms | Solr: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by AnswersController#index as HTML Parameters: {"question_id"=>"2", "user_id"=>"librarian1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'librarian1' LIMIT 1 Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "2"]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Completed 403 Forbidden in 32ms (Views: 1.3ms | ActiveRecord: 0.9ms | Solr: 0.0ms) Processing by AnswersController#index as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Processing by AnswersController#index as HTML Parameters: {"question_id"=>"1"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 1 Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Processing by AnswersController#index as HTML Parameters: {"question_id"=>"5"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 5 Completed 200 OK in 9ms (Views: 1.3ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Processing by AnswersController#index as RSS Parameters: {"question_id"=>"2"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "2"]] Completed 406 Not Acceptable in 6ms Processing by AnswersController#index as RSS Parameters: {"question_id"=>"5"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 5 Completed 200 OK in 9ms (Views: 3.3ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_1@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (4.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_1@example.jp"], ["encrypted_password", "$2a$04$bWmm9wHw3VdAYyLJmyhRe.4iHTHqqXIhQC.anneMXo8kTGG9YQpxi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["user_group_id", 1], ["username", "user_1"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:12.721617' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_1"], ["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_2@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_2@example.jp"], ["encrypted_password", "$2a$04$e56gxFaAsv7jV8MLIIISa.012ZZIVR1DvK3JWDCW0H3qH9Yh8xXuK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["user_group_id", 1], ["username", "user_2"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:12.750037' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_1"], ["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.2ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 16ms (Views: 4.6ms | ActiveRecord: 0.5ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_3@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_3@example.jp"], ["encrypted_password", "$2a$04$oPyJHuGRTamDBQpMpYC3y.QXxHjgRhhy8OLSjssiIHFfMVBcXV00q"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["user_group_id", 1], ["username", "user_3"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:12.810315' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (5.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_2"], ["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_4@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_4@example.jp"], ["encrypted_password", "$2a$04$aj/7hYrIUzhQCBkNQ/2CCOPua9I3BTsiP1ivnQYe7TW.H32l1NBJi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["user_group_id", 1], ["username", "user_4"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:12.832190' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_2"], ["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 15ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_5@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (55.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_5@example.jp"], ["encrypted_password", "$2a$04$tMsgANIsnQ5/8Z35d.XoiuXEwwjqUMV.RGDjy/h8r.s4B7pQDsDTC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["user_group_id", 1], ["username", "user_5"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:12.938344' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_3"], ["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_6@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_6@example.jp"], ["encrypted_password", "$2a$04$nE3vDyYK7NpetRBgG5Hy2.xj04U994USvTFFaS09QnMIHK0VaL0WW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["user_group_id", 1], ["username", "user_6"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:12.955897' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_3"], ["created_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:12 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 16ms (Views: 1.2ms | ActiveRecord: 0.7ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 16ms (Views: 1.3ms | ActiveRecord: 0.8ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Completed 200 OK in 11ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Completed 200 OK in 12ms (Views: 1.3ms | ActiveRecord: 0.9ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"4"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 4 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 9ms (Views: 3.4ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user2", "question_id"=>"2", "id"=>"5"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"question_id"=>"2", "id"=>"5"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 18ms (Views: 1.2ms | ActiveRecord: 0.7ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_7@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_7@example.jp"], ["encrypted_password", "$2a$04$S.7B9ta66hKzji7FJ2tx5us6SJSWo7YH5t1RoyCOBFhtCh6RDqkZy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_group_id", 1], ["username", "user_7"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:13.132952' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_4"], ["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_8@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_8@example.jp"], ["encrypted_password", "$2a$04$kH44uN7LFTVEid5Q0p/YH.divArd2HRQWdlIBjzWECvBOJWH4kYt."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_group_id", 1], ["username", "user_8"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:13.150806' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_4"], ["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 69ms (Views: 1.3ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"4"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by AnswersController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.3ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 14ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 10ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 12ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML Parameters: {"question_id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 13ms (Views: 2.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Processing by AnswersController#new as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_9@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (5.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_9@example.jp"], ["encrypted_password", "$2a$04$RchDkmOXOcJbgvgElVvkfewHFp/cnBtHpyhBxOncV9iWv5TEbeO/K"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_group_id", 1], ["username", "user_9"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:13.383035' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_5"], ["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_10@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_10@example.jp"], ["encrypted_password", "$2a$04$rb.uGO/M2MmRLpoo3apg4e4MA9LgHxGzNlPW55g/IfJhToI5mhoJK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_group_id", 1], ["username", "user_10"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:13.403477' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_5"], ["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 13ms (Views: 2.2ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.2ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_11@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_11@example.jp"], ["encrypted_password", "$2a$04$/nuYZ1uZWTeXSJz7bweF4eBBxlO7lJTGI02eq/es2OxWFNUCmGY9i"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_group_id", 1], ["username", "user_11"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:13.444333' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_6"], ["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_12@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_12@example.jp"], ["encrypted_password", "$2a$04$yiFQqu3leEZxE2d8nQTNfu/hnZbl01RzRs9YXzBX6VR6pW5kvADwS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_group_id", 1], ["username", "user_12"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:13.464463' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_6"], ["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.4ms | ActiveRecord: 0.5ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_13@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_13@example.jp"], ["encrypted_password", "$2a$04$53KeGmIfStSCvRd9TmQ32upApgM2u.3pP1mZVK6SpfduJwVbs3F1e"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_group_id", 1], ["username", "user_13"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:13.570578' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_7"], ["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_14@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_14@example.jp"], ["encrypted_password", "$2a$04$n1NZOj0GLLgt2st.gDJ6PO34AXuvfD6C78pxwQ/X9YxXCkIzmRQse"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_group_id", 1], ["username", "user_14"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:13.588216' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_7"], ["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Completed 403 Forbidden in 17ms (Views: 2.3ms | ActiveRecord: 0.5ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"question_id"=>"1", "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 12ms (Views: 1.3ms | ActiveRecord: 0.7ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"question_id"=>"1", "id"=>"4"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 4 LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 12ms (Views: 1.5ms | ActiveRecord: 0.5ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"100"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "100"]] Completed 404 Not Found in 8ms (Views: 3.0ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 14ms (Views: 1.5ms | ActiveRecord: 1.5ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user2", "question_id"=>"2", "id"=>"5"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 12ms (Views: 2.1ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_15@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_15@example.jp"], ["encrypted_password", "$2a$04$e.lARzd7GcEuoo.C3PntWudMIlCVlxUxa/MXMc3WBOZYZoueA/kmq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_group_id", 1], ["username", "user_15"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:13.730881' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_8"], ["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_16@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_16@example.jp"], ["encrypted_password", "$2a$04$E8p8K52gL.WRUZ8TM71j7eXSbuzfb5pLhSJ/oVxnkbdj48G.zlX22"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_group_id", 1], ["username", "user_16"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:13.752687' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_8"], ["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 12ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_17@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_17@example.jp"], ["encrypted_password", "$2a$04$HxdFUGz2imlOE6fOU5zYu.sJs61dyAyXWwnuR1QDT7888NUq3WGve"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_group_id", 1], ["username", "user_17"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:13.850729' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_9"], ["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_18@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_18@example.jp"], ["encrypted_password", "$2a$04$ap/sDGI2s3EOLu2YNQydFueaHwD9PRCeroHksteye091earedjobS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_group_id", 1], ["username", "user_18"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:13.871795' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"question_id"=>"1", "body"=>"hoge"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 SQL (1.1ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "hoge"], ["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 1], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["url_list", nil], ["user_id", 3]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/7 Completed 302 Found in 20ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_19@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_19@example.jp"], ["encrypted_password", "$2a$04$LV.uv9dI3DKjl41w0emV0.FmQGH2QwNh2j/vJgBriU4urF3D33HLq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_group_id", 1], ["username", "user_19"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:13.911707' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_10"], ["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_20@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_20@example.jp"], ["encrypted_password", "$2a$04$QhiKsvewbiLydY5tr4RjEurI8QPDvn8Ltg1AIqNkJ4I1897Kbz9tG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_group_id", 1], ["username", "user_20"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:13.930929' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"hoge"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 12ms User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_21@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (4.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_21@example.jp"], ["encrypted_password", "$2a$04$inHJGUP1qdd7wEocjilh9uT9AiO8/ebdXcXdU8JKdX9./biTlNAhu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_group_id", 1], ["username", "user_21"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:13.974018' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_11"], ["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_22@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_22@example.jp"], ["encrypted_password", "$2a$04$LOAY8sHwMBjpoy22CJy8W.NEZjGCDoWVMk0PErt3UemKqVNvFjOU."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_group_id", 1], ["username", "user_22"]] SQL (0.7ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:13 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:13.994033' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"question_id"=>"1", "body"=>"hoge"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 SQL (0.9ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "hoge"], ["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 1], ["shared", true], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["url_list", nil], ["user_id", 3]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/7 Completed 302 Found in 19ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_23@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (7.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_23@example.jp"], ["encrypted_password", "$2a$04$olVZfuwA2pkERLNRRAJcK.9JYAT7NV0vmHSPG0z7JP7t18DdPN33m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_group_id", 1], ["username", "user_23"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:14.040246' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (53.4ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_12"], ["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_24@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_24@example.jp"], ["encrypted_password", "$2a$04$pQM8By74z7X0j/erbWqEFu.GlKCckdHenf7aFsemG4Tq99FQ05EhK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_group_id", 1], ["username", "user_24"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:14.109534' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"answer_12", "question_id"=>"7", "user_id"=>"9"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_25@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (5.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_25@example.jp"], ["encrypted_password", "$2a$04$WjRGLINYdaiVeARLS.2UK.Vwmnh8ZKqL.U4w3R9UpT0VsBqc7CI7a"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_group_id", 1], ["username", "user_25"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:14.143192' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_13"], ["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.3ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_26@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_26@example.jp"], ["encrypted_password", "$2a$04$Qn..CkhUNfBFIUyGFxl1Cee.uOeuTZasXauTzwduTtQb4f1VZChR6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_group_id", 1], ["username", "user_26"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:14.161646' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"answer_13", "question_id"=>"7", "user_id"=>"9"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_27@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_27@example.jp"], ["encrypted_password", "$2a$04$wygIOqBSyaRitrcgNcKd4.LpiePVB0oSKJl31Neh8jSM4JrwYTyFy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_group_id", 1], ["username", "user_27"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:14.190989' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_14"], ["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_28@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_28@example.jp"], ["encrypted_password", "$2a$04$quVAlu3GyYP8EFMWUCVWQuCwH7ZDWYsIc4W8BbsP7kRJoqa.qmPmO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_group_id", 1], ["username", "user_28"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:14.207076' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_29@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (5.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_29@example.jp"], ["encrypted_password", "$2a$04$/ZmHv5Up1kzzWzLqOmFU6eNu0LFdnY1wJAHtj8yjR4NRSzYMXAWYa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_group_id", 1], ["username", "user_29"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:14.244674' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_15"], ["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_30@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_30@example.jp"], ["encrypted_password", "$2a$04$7tfwc8MEoLDDatXAzc5MoOf7Ykx8zr3PmIki6YzrvOoAQ6ZOdqH0u"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_group_id", 1], ["username", "user_30"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:14 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:14.268267' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.2ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 85ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.2ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 21ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 16ms (Views: 1.2ms | ActiveRecord: 0.8ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.2ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 17ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.2ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 21ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.2ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 20ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 21ms (Views: 6.1ms | ActiveRecord: 0.8ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (1.0ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 19ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 11ms (Views: 1.3ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user2", "id"=>"5"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 13ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "question_id"=>"1", "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.2ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 72ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 19ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 18ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 19ms (Views: 1.4ms | ActiveRecord: 0.9ms | Solr: 0.0ms) Answer Load (0.2ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#destroy as HTML Parameters: {"id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 AnswerHasItem Load (0.1ms) SELECT "answer_has_items".* FROM "answer_has_items" WHERE "answer_has_items"."answer_id" = 3 SQL (0.3ms) DELETE FROM "answers" WHERE "answers"."id" = ? [["id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Redirected to http://test.host/questions/1/answers Completed 302 Found in 14ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#destroy as HTML Parameters: {"id"=>"5"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 11ms (Views: 1.3ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Processing by AnswersController#destroy as HTML Parameters: {"id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 12ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 SOLR Request (26.9ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (3.1ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 91ms (Views: 3.8ms | ActiveRecord: 0.2ms | Solr: 30.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 SOLR Request (3.2ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (2.5ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.2ms | Solr: 5.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#index as RSS User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 SOLR Request (3.1ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (3.2ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 14ms (Views: 1.8ms | ActiveRecord: 0.2ms | Solr: 6.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 SOLR Request (3.7ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (3.1ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.2ms | Solr: 6.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#index as RSS User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 SOLR Request (3.5ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (3.4ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.2ms | Solr: 6.9ms) Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."shared" = 't' ORDER BY id DESC, updated_at LIMIT 10 OFFSET 0 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#index as RSS Parameters: {"user_id"=>"user1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 SOLR Request (3.4ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser1&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (3.1ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser1&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 14ms (Views: 1.0ms | ActiveRecord: 0.3ms | Solr: 6.6ms) Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."user_id" = 3 ORDER BY id DESC User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by QuestionsController#index as HTML Parameters: {"user_id"=>"user2"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2' LIMIT 1 SOLR Request (3.7ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (3.7ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 17ms (Views: 1.3ms | ActiveRecord: 0.3ms | Solr: 7.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by QuestionsController#index as RSS Parameters: {"user_id"=>"user2"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2' LIMIT 1 SOLR Request (3.7ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (3.9ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 64ms (Views: 1.4ms | ActiveRecord: 0.4ms | Solr: 7.6ms) Processing by QuestionsController#index as HTML SOLR Request (3.4ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (4.4ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 15ms (Views: 1.0ms | ActiveRecord: 0.0ms | Solr: 7.8ms) Processing by QuestionsController#index as HTML Parameters: {"query"=>"Yahoo"} SOLR Request (15.1ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (7.5ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 47ms (Views: 1.2ms | ActiveRecord: 0.0ms | Solr: 22.6ms) Processing by QuestionsController#index as XML Parameters: {"query"=>"Yahoo", "mode"=>"crd"} SOLR Request (6.0ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (4.4ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Completed 200 OK in 34ms (Views: 4.5ms | ActiveRecord: 0.0ms | Solr: 10.3ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_31@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_31@example.jp"], ["encrypted_password", "$2a$04$jprmqvvl/yBMoFiiXwv0meBsSVSR388/Bf7Kd63CfdX4XRe4C05X6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_group_id", 1], ["username", "user_31"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:17.455761' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_16"], ["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 13ms (Views: 2.8ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.4ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_32@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_32@example.jp"], ["encrypted_password", "$2a$04$SwSpymuOt3bFRwlX3ckPneA8/XQyBIUneqf49YRIp6q70MygWz8fO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_group_id", 1], ["username", "user_32"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:17.543828' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_17"], ["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 10ms (Views: 1.2ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_33@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_33@example.jp"], ["encrypted_password", "$2a$04$noPTxZLKNRlgU2yLXYhCPOUH.SMXNQSTATxuH/4LZYzsXNojuHvve"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_group_id", 1], ["username", "user_33"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:17.577754' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_18"], ["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 200 OK in 11ms (Views: 1.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_34@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_34@example.jp"], ["encrypted_password", "$2a$04$lDk/sqwE0Sc9Mrv9EZbPTep6niqo/siZ48T0amGj3nh6l0koLax6q"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_group_id", 1], ["username", "user_34"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:17.610019' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_19"], ["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 200 OK in 10ms (Views: 1.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_35@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_35@example.jp"], ["encrypted_password", "$2a$04$wujPegUCFwVYEgQ9Q14Lj./qLJk.71U3yVAwNcf101ErW1mYfUr2e"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_group_id", 1], ["username", "user_35"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:17.641263' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_20"], ["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 8ms (Views: 1.2ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_36@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_36@example.jp"], ["encrypted_password", "$2a$04$nYzIoPHoGMbWe3oIaiFbd.L3//YQuEIRtNmgv5vWPRLyLoqsXD6dS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_group_id", 1], ["username", "user_36"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:17.671292' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_21"], ["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 3]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_37@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_37@example.jp"], ["encrypted_password", "$2a$04$A3k9l4w4dyGTx0VHdzEZOOipyW6RR4gl12ScWh1yNXzXiiABKrBCK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_group_id", 1], ["username", "user_37"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:17.705252' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_22"], ["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"5"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 200 OK in 12ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 5]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_38@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (53.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_38@example.jp"], ["encrypted_password", "$2a$04$aYBI6MXMpZswpI5u0ZBTTOrEZeq4jbUCRA2yREBfsVDRZRfwJR62i"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_group_id", 1], ["username", "user_38"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:17.791419' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_23"], ["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Completed 200 OK in 9ms (Views: 1.3ms | ActiveRecord: 0.1ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_39@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_39@example.jp"], ["encrypted_password", "$2a$04$EVzxi5O7M.DrQ4Gw5514.eoPx4qlVOvdu4XIdInpeYkbFwjmCP0t2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_group_id", 1], ["username", "user_39"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:17.823389' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_24"], ["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#show as XML Parameters: {"mode"=>"crd", "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Completed 200 OK in 11ms (Views: 2.6ms | ActiveRecord: 0.1ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 12ms (Views: 1.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 200 OK in 9ms (Views: 1.2ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Processing by QuestionsController#new as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_40@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_40@example.jp"], ["encrypted_password", "$2a$04$VJWbglxSnGfS6wnXq4ers.XUaG4x93ACBhYsuHD0zliGb.FE59Mgu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_group_id", 1], ["username", "user_40"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:17.922197' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_25"], ["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 11ms (Views: 2.0ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_41@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_41@example.jp"], ["encrypted_password", "$2a$04$cj/R6q.S.t/EDHmAfbfUouJJhhdEeVoA4Y8PgHHZCW6B9pbzoFt.W"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_group_id", 1], ["username", "user_41"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:17.957571' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_26"], ["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 10ms (Views: 1.3ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_42@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_42@example.jp"], ["encrypted_password", "$2a$04$Syv/AYxIjkaQN0y3YegLnO3wDLm5zb0iyulzSMVgRXqOmu/OFTg0y"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_group_id", 1], ["username", "user_42"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:17.991493' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (52.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_27"], ["created_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:17 UTC +00:00], ["user_id", 8]]  (0.8ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.3ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_43@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_43@example.jp"], ["encrypted_password", "$2a$04$Qmk9pgBxpPwyReat4VbzEeMfGUeLFs6Hytbbdz6JZwXbgV1atw.m6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_43"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.077649' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_28"], ["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 11ms (Views: 0.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_44@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_44@example.jp"], ["encrypted_password", "$2a$04$vEfrLGsc8ckkmhHCrlYW..EDxuBfHOq7KDKefXv6oy6XFJ9Jvnio."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_44"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.109656' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_29"], ["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 9ms (Views: 1.2ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_45@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_45@example.jp"], ["encrypted_password", "$2a$04$wnyqyX95r1XhcmLUyCakx.bMjo7Ikob/a4oI0oeMgF3k9l6vpEr7G"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_45"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.140830' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_30"], ["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 15ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_46@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (3.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_46@example.jp"], ["encrypted_password", "$2a$04$TIjfMv055E6KaEhJBAkqf.yBhhLVhPtzmSLyBVutSNyocOC9Uf6zC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_46"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.181815' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (9.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_31"], ["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 10ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_47@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_47@example.jp"], ["encrypted_password", "$2a$04$SCXVHWcyn7U4fxEkESpLOuZCIFXw7m9uiVJ6jvpHRp.Zow1PCuOMe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_47"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.227441' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_32", "user_id"=>"8"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (2.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_32"], ["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 20ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_48@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_48@example.jp"], ["encrypted_password", "$2a$04$47bK8zNEwo03PnxkOzINheHobMdvJqJI6SXqxi.H2OEvmJILk4azu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_48"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.294040' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_33", "user_id"=>"8"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_33"], ["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 77ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_49@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_49@example.jp"], ["encrypted_password", "$2a$04$mfI8rF/WNnNuwb.U.dZlXezF7cwQvwozaGBW8PoB99c6CuBB2TKLe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_49"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.501151' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 1.6ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_50@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_50@example.jp"], ["encrypted_password", "$2a$04$z4oacP1cOUDhLoxs9p83teqIyKkAvaahlEya1r8IQ0MAw02d4CwvG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_50"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.575543' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 1.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_51@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_51@example.jp"], ["encrypted_password", "$2a$04$Z9hbN.xdefgEiniC7jKfGePRH85Xwy7lVbFB5WzZHUAdE3ujPQVwq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_51"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.609775' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_36", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_36"], ["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 15ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_52@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_52@example.jp"], ["encrypted_password", "$2a$04$5s6nDduQI7ZEWyS1RjhoieS5Zf/mTCmrhOXNpPrqIOvVjRE4folSq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_52"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.644462' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_37", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_37"], ["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 17ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_53@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_53@example.jp"], ["encrypted_password", "$2a$04$dhgm/PMJRxvvPW213t81OeacJ9pWCqTTpoY/DS.Q91VDoxc0BlUSa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_53"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.3ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.684049' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_54@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_54@example.jp"], ["encrypted_password", "$2a$04$X4NuH4rrr1lOClYhpr//Uuas7.t6Y.iEU64T//6ex6Ang95yZofRq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_54"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.722698' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 13ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_55@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_55@example.jp"], ["encrypted_password", "$2a$04$Mj91MJRZO1W/2X/.XWb2xe285MdrasaZTnk.IeicRX2zeIrd3INT2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_55"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.757304' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_40", "user_id"=>"8"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_40"], ["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 79ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_56@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (5.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_56@example.jp"], ["encrypted_password", "$2a$04$8RmKYVgars36bYVgZAHxc.azCVqqrinBNYOaeW.BdWEla4ozYHbEe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_56"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.858765' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_41", "user_id"=>"8"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_41"], ["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 16ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_57@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_57@example.jp"], ["encrypted_password", "$2a$04$jOFvLIqq23eHfbgoiB35buOCv0dKfTGmKWxqmKlbCbYlMtqdq1RgW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_57"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.895515' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 1.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_58@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_58@example.jp"], ["encrypted_password", "$2a$04$Y0u/paz4KSFmrfAcj13lz.OjOjiiZEoe5YtExr1xfv4dac6gkEMN."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_58"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.932390' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 13ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_59@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_59@example.jp"], ["encrypted_password", "$2a$04$VpwmeBhkuNhp8eIdcF/AEeRh.a78WNGj8UrlA69tJXa3y.AwgLIlS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_59"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.966080' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_44", "user_id"=>"8"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_60@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_60@example.jp"], ["encrypted_password", "$2a$04$dJ3eIBCfuyGAxo1jdXxrEODmd4LJtLn6lo4tIyD0z.fUxoqYoljNu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_group_id", 1], ["username", "user_60"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:18 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:18.996819' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_45", "user_id"=>"8"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_61@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_61@example.jp"], ["encrypted_password", "$2a$04$intLI9w6bvjMFSc.dMOc4ehTG3iDsB3QaYdm2lbRTgPE.ErIcumNi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_61"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.025809' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_62@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (65.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_62@example.jp"], ["encrypted_password", "$2a$04$rkeP5zFIWkZvvHtj8YeaH.hmTbe5D9H3Kj3rBxk8k2ub7zOIAgz4O"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_62"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.123129' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_63@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_63@example.jp"], ["encrypted_password", "$2a$04$7nuTQKEuq0sk5g6RN86hK.B3Vt0j5CVlD1xA/gFYUQLw9FGvnJjl6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_63"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.148543' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_48"], ["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_64@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_64@example.jp"], ["encrypted_password", "$2a$04$DYmBHrF91lFOUCsiY4ccAO35u4XrGRu3m2Dg8MdfRgYJEmYIdY7My"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_64"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.166591' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 17ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_65@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_65@example.jp"], ["encrypted_password", "$2a$04$Q7dCptQRsrogbPmP7d0pW.yNU79RjeY4EiWrLn9JbADkYWB25qUiO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_65"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.205008' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_50"], ["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_66@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_66@example.jp"], ["encrypted_password", "$2a$04$rxHP4Ke57dZ6S/VnzLSEU.OC.UCmFA54j5a2gwVK/Xit3sNjYmCO6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_66"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 9]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.225630' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{}, "id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 10ms (Views: 3.8ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_67@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_67@example.jp"], ["encrypted_password", "$2a$04$/j3k8hHRlkKypg11KPQcfuyn5D6F47k/DkMIoFdtQ/NCXiuvxy31e"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_67"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.266455' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_52"], ["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_68@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_68@example.jp"], ["encrypted_password", "$2a$04$Ssb3mk6SDRenTLKrxc9UPOJxAxVTqckuFJdBq4CfzuAVkLVl3LEGG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_68"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 9]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.288661' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_53", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_53', "user_id" = 9, "updated_at" = '2011-12-28 21:52:19.306288' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 18ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_69@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_69@example.jp"], ["encrypted_password", "$2a$04$FHAf9EeGtSQpAJ.qqMBG.ORPe5M25RA5SiqBOJsGJCZKVWEcv3R8i"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_69"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.381105' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_54"], ["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_70@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_70@example.jp"], ["encrypted_password", "$2a$04$x4OhuxkTmtKyHIf53.XO2.DYI.LSi.2MAE46it11dgdk1733oL3Ke"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_70"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.396882' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_55", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_55', "user_id" = 9, "updated_at" = '2011-12-28 21:52:19.468287' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 72ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_71@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_71@example.jp"], ["encrypted_password", "$2a$04$vFzgsQeTgVNAs8I4/J5W6.Ymi5zYe1yEGCk9QtU83wHEhJmTUeKBq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_71"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.488557' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_56"], ["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_72@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_72@example.jp"], ["encrypted_password", "$2a$04$ZW/pkil8rsBNFkdRy2Vn8OHp1K1e4fXi9mR91NiRuJc1OIycTG9by"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_72"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 9]]  (0.3ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.505000' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 1.4ms | ActiveRecord: 0.7ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_73@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_73@example.jp"], ["encrypted_password", "$2a$04$3UiMZ2Ny4L75LQhI1d084u2uPMFIeaUT40F..tPdBSqbmyYwo4RRS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_73"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.538699' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_58"], ["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_74@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_74@example.jp"], ["encrypted_password", "$2a$04$cIg55JCHtq9aNnOBWQY8cOp93dJGuSSUW6XO1SzNGZ4Yj397ZilVW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_74"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.557621' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_75@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_75@example.jp"], ["encrypted_password", "$2a$04$nVpRAJv7yM92qmvTGl4CGury/3tB2kmU7eg4sBeE.yndESn5CEwIS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_75"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.591767' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_60"], ["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_76@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_76@example.jp"], ["encrypted_password", "$2a$04$dZ2WUtylAFIPj33zEl3NHeK9MaR2p6OLJTUNyMlIbD9873oOXzXKO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_76"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 9]]  (1.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.609668' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_61", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_61', "user_id" = 9, "updated_at" = '2011-12-28 21:52:19.627353' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 16ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_77@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (6.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_77@example.jp"], ["encrypted_password", "$2a$04$2Q3YBblSLRk1W855JTRP3eH7B757K6J5BM5qdjVMJMEKcMXQY3RtW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_77"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.651436' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_62"], ["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_78@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_78@example.jp"], ["encrypted_password", "$2a$04$.8NnhZCMWKHOjKj.G90z8.ppmxfrfjqUeEwYUFvKFuAsYkMAoAbOu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_78"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 9]]  (0.8ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.667925' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_63", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.2ms) UPDATE "questions" SET "body" = 'question_63', "user_id" = 9, "updated_at" = '2011-12-28 21:52:19.687943' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 16ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_79@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_79@example.jp"], ["encrypted_password", "$2a$04$irkqO/8iZ81WG1x3tzn6kO2UxyWnvbAiFUF92bnfuJ4DgMF1McRWW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_79"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.764526' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_64"], ["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_80@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_80@example.jp"], ["encrypted_password", "$2a$04$s6w5h22iaOtXnkhQhfOXFeQXfbFgTfMvJDBCwN6LQRQgJShbklGzS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_80"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.782739' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 1.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.3ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_81@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_81@example.jp"], ["encrypted_password", "$2a$04$tKEhlnivLD/etRFJbkqET.2UOkVu/P5cEP8Actj6PSZCdun6PCwja"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_81"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.817383' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_66"], ["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_82@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_82@example.jp"], ["encrypted_password", "$2a$04$ihPpt87MxAWwuLlaLHMM/..ej413hBmozcGimTcL0vzEnNDfgS4Ou"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_82"]] SQL (0.6ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.835082' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 13ms (Views: 1.2ms | ActiveRecord: 0.7ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_83@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_83@example.jp"], ["encrypted_password", "$2a$04$AjAS2gR0jtJWV4ikIVtUOOkL2dcncpm3/XC9UsZQ301hcbnuBRgKe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_83"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.872765' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_68"], ["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_84@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_84@example.jp"], ["encrypted_password", "$2a$04$R7QxGgjF1xsvLYzYYFfZ1.Vq98oaR0Ppap1c5e7jBUstirhCgupya"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_84"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.892034' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.3ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/3 Completed 302 Found in 14ms Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 3]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_85@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (5.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_85@example.jp"], ["encrypted_password", "$2a$04$zW1xsqV7QJLwIZGhHdFtF.4Ojz33/b4w04iztFhbmdy4JQUvjG0B."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_85"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.930733' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_70"], ["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_86@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_86@example.jp"], ["encrypted_password", "$2a$04$rBAXCX6B53WuMf8eWiRj6uBH/No6mXUyQawem1LvIUUdVMlFKrmHi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_86"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:19.949215' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_71", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.4ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_87@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_87@example.jp"], ["encrypted_password", "$2a$04$bFMuf9L6IfrTvUqJk6egCOxHAMR.CUHLu3FsdJrfPXkNqTknyoXTK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:19 UTC +00:00], ["user_group_id", 1], ["username", "user_87"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.037949' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_72"], ["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_88@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_88@example.jp"], ["encrypted_password", "$2a$04$D09LN6oTFPexZk2Zg6jKeeZOS5xY1AMAUYB1Biz4PMFTBaRpW7nIG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_88"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.058889' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_73", "user_id"=>"9"}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_89@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_89@example.jp"], ["encrypted_password", "$2a$04$SqtISkX6U3ovKnmsaSPrtuFgI5BM2bMgBC/E6xjWLjIQOjuw4uY/G"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_89"]] SQL (4.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.095255' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_74"], ["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_90@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (13.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_90@example.jp"], ["encrypted_password", "$2a$04$tHXkuhzfpvWGfQ1p521v5uwOXzctZ724J19AMWLefbluHzzalsBYO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_90"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.124813' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.3ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_91@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (4.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_91@example.jp"], ["encrypted_password", "$2a$04$JBd0BhIsgdW7tgQMpUfTHOL4Qk2gvHuiGEcZ4YWyjicHsUyOD1DaW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_91"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.160067' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_76"], ["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_92@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_92@example.jp"], ["encrypted_password", "$2a$04$1dWr5HgPvJ4d09W1rPDO3.rqochzUoYL0QeeB0u/n.7LBiNFtk.Qi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_92"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.176441' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 14ms (Views: 1.3ms | ActiveRecord: 0.7ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.2ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_93@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (4.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_93@example.jp"], ["encrypted_password", "$2a$04$xEhod08pH.xNGS4Cicz./.sNo8tjWw2DYyfCtpMz0faX9edJU6aey"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_93"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.213497' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_78"], ["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_94@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_94@example.jp"], ["encrypted_password", "$2a$04$bbczvcvtkH1OKHhertRyk.PRFc4eciHQzIVdi7XJQ2W5aG2u/4j1y"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_94"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.236334' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_79", "user_id"=>"9"}, "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 14ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_95@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (44.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_95@example.jp"], ["encrypted_password", "$2a$04$1DbbABGLKU9wy8HlGqJ/NuNJoSrKE4RtYZtCaEj1Jc1qXE1w4cCli"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_95"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.309792' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_80"], ["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_96@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_96@example.jp"], ["encrypted_password", "$2a$04$MCFUyrr.KACBDoa0DTQOxOVtD9vrYeApJMBCA6PYimmVs6ZkojXXK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_96"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.324590' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_81", "user_id"=>"9"}, "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 5ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_97@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_97@example.jp"], ["encrypted_password", "$2a$04$dZGxd7sZfyH8ZLPAUT6KfOQeHm9gdEDnQ8Jlr8NPshC63uJNaJaL6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_97"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.346053' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_82"], ["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_98@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_98@example.jp"], ["encrypted_password", "$2a$04$fx6ZE.u1qWB34r.S8z0B8er8uG0cYieOiG3o7VF.q6qynXJj.CMGi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_98"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.358689' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 5ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_99@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_99@example.jp"], ["encrypted_password", "$2a$04$7zljnSphPB1xZoFp2KXV7eLVSR7JuYQms5OMpI2A3ZR3VnelS9SX2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_99"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.375671' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_84"], ["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 17ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_100@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_100@example.jp"], ["encrypted_password", "$2a$04$173aDOO3JcKdPua6Aubt..FSbqzhiL2D6ixylp5ZHZBTllpXQKwWe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_100"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.406642' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_85"], ["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 43ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_101@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_101@example.jp"], ["encrypted_password", "$2a$04$v2lWtQNauKqQR0qlMHh5t.fJ3qKMTIV1adf2f5hsRBVP6Q./fYXGG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_101"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.464649' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_86"], ["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"missing"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 5ms (Views: 0.8ms | ActiveRecord: 0.1ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_102@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_102@example.jp"], ["encrypted_password", "$2a$04$8PdeQm.WEcSlzLsIR4rCjuvlpJaT4XbiontpKZBr24mRXOstHnKoK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_102"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.483526' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_87"], ["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 9ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_103@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_103@example.jp"], ["encrypted_password", "$2a$04$IuDP7.DTu5t5K2V4sLruf.wlG2AbO4PHA7Teq6908vW8DaD7zIcI6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_103"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.506407' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_88"], ["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 9ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_104@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_104@example.jp"], ["encrypted_password", "$2a$04$ZiDpZDCzZ6qkRHncAslpHu1kotIy3W19F9xcoxt7w2Q.F6GD/K5EG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_104"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.530125' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_89"], ["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 7ms (Views: 0.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_105@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_105@example.jp"], ["encrypted_password", "$2a$04$hL7kXbc0RD5Urnm4FAi1CeHBaxWbCnQj4B9.M.j.dYK6mwUDPcI7i"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_105"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.551670' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_90"], ["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 7ms (Views: 0.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_106@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_106@example.jp"], ["encrypted_password", "$2a$04$ZDMQGszB8Eo6D3OLW/XQguOLJ5EqAqF/hmNMm5kzCsmX3.gua35Um"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_106"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.573894' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_91"], ["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 3 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/users/3/questions Completed 302 Found in 44ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_107@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_107@example.jp"], ["encrypted_password", "$2a$04$JyShaIFobhcnFULCqlsoTOMTJwa.KqPwf3DZpI6YEMKmTMKXS98sS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_107"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.633375' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_92"], ["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 7ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_108@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_108@example.jp"], ["encrypted_password", "$2a$04$PNPTnOVJrFRmacFMYPe4seGKDeKR5IlJSb89RED5KhZXEb0h39Hyu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_108"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.655624' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_93"], ["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 5ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_109@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_109@example.jp"], ["encrypted_password", "$2a$04$uDUbhaSnkdr3x0TdBVt3qOlWcvR0BHKTmQefydZyvsEMsic8pp28W"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_group_id", 1], ["username", "user_109"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["role_id", 2], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2011-12-28 21:52:20.674441' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_94"], ["created_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Wed, 28 Dec 2011 21:52:20 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 5ms Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 1]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 1 ORDER BY id DESC LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 1 ORDER BY id DESC LIMIT 1 Fixture Delete (0.3ms) DELETE FROM "answer_has_items" Fixture Insert (0.2ms) INSERT INTO "answer_has_items" ("updated_at", "item_id", "answer_id", "id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 1, 1, 1, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answer_has_items" ("updated_at", "item_id", "answer_id", "id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 2, 2, 2, '2007-12-25 17:28:47.252993') Fixture Delete (0.1ms) DELETE FROM "answers" Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 1, 1, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 2, 2, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 3, 3, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 4, 4, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 5, 5, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 6, 1, '2007-12-25 17:28:47.252993') Fixture Delete (0.1ms) DELETE FROM "questions" Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'Yahoo', 1, 1, 't', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 2, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 3, 3, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 4, 4, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:48.252993', 'test', 5, 5, 't', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 6, 1, 'f', '2007-12-25 17:28:47.252993') Fixture Delete (20.0ms) DELETE FROM "roles" Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Guest', 'Guest', 1, NULL, '2012-01-20 16:13:56', '2012-01-20 16:13:56') Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('User', 'User', 2, NULL, '2012-01-20 16:13:56', '2012-01-20 16:13:56') Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Librarian', 'Librarian', 3, NULL, '2012-01-20 16:13:56', '2012-01-20 16:13:56') Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Administrator', 'Administrator', 4, NULL, '2012-01-20 16:13:56', '2012-01-20 16:13:56') Fixture Delete (0.3ms) DELETE FROM "user_groups" Fixture Insert (0.1ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('(not specified)', '(not specified)', '2007-12-13 12:00:51.564542', 1, '', '2007-12-13 12:00:01.674976', 1) Fixture Insert (0.0ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('User', 'User', '2007-12-22 18:14:56.836548', 2, '', '2007-12-22 18:14:40.173954', 2) Fixture Insert (0.0ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('Faculty', 'Faculty', '2007-12-22 18:15:05.134351', 3, '', '2007-12-22 18:15:05.126457', 3) Fixture Delete (0.1ms) DELETE FROM "user_has_roles" Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (1, 4, '2012-01-20 16:13:56', '2012-01-20 16:13:56', 135138680) Fixture Insert (0.0ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (2, 3, '2012-01-20 16:13:56', '2012-01-20 16:13:56', 344583537) Fixture Insert (0.0ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (3, 2, '2012-01-20 16:13:56', '2012-01-20 16:13:56', 206669143) Fixture Insert (0.0ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (4, 3, '2012-01-20 16:13:56', '2012-01-20 16:13:56', 226540757) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (5, 2, '2012-01-20 16:13:56', '2012-01-20 16:13:56', 358143215) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (6, 2, '2012-01-20 16:13:56', '2012-01-20 16:13:56', 576709754) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (7, 2, '2012-01-20 16:13:56', '2012-01-20 16:13:56', 1010528733) Fixture Delete (0.8ms) DELETE FROM "users" Fixture Insert (0.2ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:16:30.163731', '$2a$10$vHohD1WflnTIqAa8zMkF9evwAgIZRw3XuR4d3bi29M.jph/MB/AJi', 2, 1, NULL, 'admin', 'tanabe@kamata.lib.teu.ac.jp', '2007-11-19 07:58:32.111941', 4) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 03:41:16.337474', '$2a$10$9O2VuTccN4gHq36ARg0QReSrb1D7WrBBhZZ759RM9moHbB0W5zCzS', 1, 2, NULL, 'librarian1', 'librarian1@kamata.lib.teu.ac.jp', '2007-11-19 07:58:33.172441', 1) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', '$2a$10$JthS59A0BNkDOoFpCXM0V.GhhffKaoWKbzpPahYp/vTFrOyM7h/uW', 1, 3, NULL, 'user1', 'user1@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "created_at", "required_role_id") VALUES ('2008-05-31 03:42:23.340575', '$2a$10$YmmTGrYQ1Ir6oc7wXnp.GuNeO1eYLoP3sv8wMSIrTdaGw2BPwRrpS', 1, 4, NULL, 'librarian2', '2008-01-18 03:24:04.222344', 1) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "created_at", "required_role_id") VALUES ('2008-05-31 03:42:44.711117', '$2a$10$i7UjJhLVrJM/J7qaTwW39OXw1NiwowUEbtNHVDV0sqMLjX9.UO9ca', 1, 5, NULL, 'user2', '2008-01-18 04:29:06.922728', 2) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', 'cc53de0c2d9a1a228daa9a673ec824473747e17507a6c3c4f7e5eff8821f531d4b9e23616b3ddc66fe17006b2298a556fbd567ac080e87f00f37eef8cee6c417', 1, 6, NULL, 'user3', 'user3@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', 'cc53de0c2d9a1a228daa9a673ec824473747e17507a6c3c4f7e5eff8821f531d4b9e23616b3ddc66fe17006b2298a556fbd567ac080e87f00f37eef8cee6c417', 1, 7, NULL, 'user4', 'user4@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by AnswersController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers" Rendered /Users/kosuke/enju_question/app/views/answers/index.html.erb within layouts/application (4.6ms) Completed 200 OK in 131ms (Views: 53.6ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "answers"  User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by AnswersController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers"  Completed 200 OK in 9ms (Views: 1.4ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "answers" User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 403 Forbidden in 8ms (Views: 2.9ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 403 Forbidden in 6ms (Views: 0.9ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML Parameters: {"user_id"=>"user1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3 Completed 200 OK in 20ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#index as HTML Parameters: {"user_id"=>"user2"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2' LIMIT 1 Completed 403 Forbidden in 7ms (Views: 0.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as RSS Parameters: {"user_id"=>"user1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3 Completed 200 OK in 31ms (Views: 23.2ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by AnswersController#index as HTML Parameters: {"question_id"=>"2", "user_id"=>"librarian1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'librarian1' LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "2"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Completed 403 Forbidden in 26ms (Views: 0.9ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Processing by AnswersController#index as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 11ms Processing by AnswersController#index as HTML Parameters: {"question_id"=>"1"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 1 Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Processing by AnswersController#index as HTML Parameters: {"question_id"=>"5"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 5 Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Processing by AnswersController#index as RSS Parameters: {"question_id"=>"2"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "2"]] Completed 406 Not Acceptable in 7ms Processing by AnswersController#index as RSS Parameters: {"question_id"=>"5"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 5 Completed 200 OK in 9ms (Views: 1.4ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_1@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (55.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_1@example.jp"], ["encrypted_password", "$2a$04$XVX1u9CqKT7gMk6Ijs8iyOJqq1F0O387cl4JzZtRifluGSlgQFM3y"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_1"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.066585' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_1"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_2@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_2@example.jp"], ["encrypted_password", "$2a$04$Oem2dbdBG/PvwPhLFni.U.9P26wCRZtaAwRL8srVC2ZR7gv5CFlJG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_2"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.078480' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_1"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 27ms (Views: 19.5ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_3@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_3@example.jp"], ["encrypted_password", "$2a$04$hGtvrcNlBg57yi/m11Hc3OewXVy/hBxPRqC/SAQBzzkb77rrT4BPG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_3"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.193058' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_2"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_4@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_4@example.jp"], ["encrypted_password", "$2a$04$YXsVpqDpZZHAIPvOxBCWNuAdgc/JdbYnLfJBJLb2YALeAynj6yM0C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_4"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.206594' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_2"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.5ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_5@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_5@example.jp"], ["encrypted_password", "$2a$04$kauFMsUcXEB28QybjIQxpuhX9a3HYyJduVnA1/SjrwRPSJhz.hZCu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_5"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.238971' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_3"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_6@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_6@example.jp"], ["encrypted_password", "$2a$04$2W5k2cg1dr1wkW4TZsa8hO3Nrs9yq2UOgCAwjkb7/10/vlNdfTNxa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_6"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.251599' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_3"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.4ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Completed 200 OK in 12ms (Views: 1.3ms | ActiveRecord: 0.8ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"4"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 4 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 10ms (Views: 1.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"missing"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 32ms (Views: 27.2ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user2", "question_id"=>"2", "id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 9ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"question_id"=>"2", "id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 9ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_7@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_7@example.jp"], ["encrypted_password", "$2a$04$gevykv24MiluLR8TvvbYBOO1r42lJBX1XGHA4Ur4nr7rr0FF.MDua"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_7"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.401469' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_4"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_8@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_8@example.jp"], ["encrypted_password", "$2a$04$qOF5JHcVvdbMOprKp4f8QOnwdurrxGFJ6yapA0oWkeKdz8lXUw1Wi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_8"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.416029' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_4"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 9ms (Views: 1.3ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] Completed 200 OK in 8ms (Views: 1.0ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"4"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by AnswersController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 9ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 8ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 8ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML Parameters: {"question_id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 12ms (Views: 3.1ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Processing by AnswersController#new as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 6ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_9@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_9@example.jp"], ["encrypted_password", "$2a$04$I/mPEOuF0lQDdjCwK0TiZeH.Le0GRL9vUvRcDabuwE13jDE/MhaOa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_9"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.536881' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_5"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_10@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_10@example.jp"], ["encrypted_password", "$2a$04$3tECcRpZkDzzzgKE2eWKA.wvgCZ5EKgvR1ZVYF0RavFAOYGles.Ie"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_10"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.548653' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_5"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 12ms (Views: 2.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_11@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_11@example.jp"], ["encrypted_password", "$2a$04$7oTTM/xBfM9cH9hWEt8ovu/3ANJ2ke8g893AeF3DOEczHNx21OQ/2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_11"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.580518' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_6"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_12@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_12@example.jp"], ["encrypted_password", "$2a$04$K0xE2p6osTuaRdB7VXzPIexfi0sR69byvsNOhqLwyrDMZIislMe06"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_12"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.590898' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_6"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Completed 403 Forbidden in 10ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (33.7ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_13@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_13@example.jp"], ["encrypted_password", "$2a$04$ffIUC7fa/vwOHrRO/b/4quVe0I2xO95zKZPvlo.D2DLJJJlsHQXlK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_13"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.656001' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_7"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_14@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_14@example.jp"], ["encrypted_password", "$2a$04$x3PCO4RAgyf9kgZrBh8MoehCT89Ios3u5p7X3sqDxRFMJJs7z/xhS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_14"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.671048' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_7"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Completed 403 Forbidden in 10ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"question_id"=>"1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 14ms (Views: 1.5ms | ActiveRecord: 0.7ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"question_id"=>"1", "id"=>"4"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 4 LIMIT 1 Completed 403 Forbidden in 13ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 10ms (Views: 1.1ms | ActiveRecord: 0.5ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"100"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "100"]] Completed 404 Not Found in 7ms (Views: 1.1ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 11ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user2", "question_id"=>"2", "id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 10ms (Views: 1.0ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_15@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_15@example.jp"], ["encrypted_password", "$2a$04$75wATcqBHM1ga7w/stPNYe7PrlGzr22OHlX.jTTw.Z8pIdk0zmAma"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_15"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.788474' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_8"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.2ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_16@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_16@example.jp"], ["encrypted_password", "$2a$04$Gk83D0It.47IVuGIEWclz.vuTn.DNZV5BZ19BtBaaNqpTpwPLy7Q2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_16"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.804160' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_8"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_17@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_17@example.jp"], ["encrypted_password", "$2a$04$tY6amf2cD9PG5tzrOM278OyttJFQkyZ3y7ovTdJSPzIZKml04QbYq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_17"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.834683' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_9"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_18@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_18@example.jp"], ["encrypted_password", "$2a$04$lO3nqLy/Z/wlR0tFYUQ64e72TvkkRQQPpvxYdCvd45a6c5da9pWuu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_18"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.849347' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"question_id"=>"1", "body"=>"hoge"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 SQL (1.2ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "hoge"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 1], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["url_list", nil], ["user_id", 3]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/7 Completed 302 Found in 20ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_19@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_19@example.jp"], ["encrypted_password", "$2a$04$wSCR92n1myd2MBxxqjx/JOsFIXMqCwPmpHvhkOZfyNZcxFN6KPw1W"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_19"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.883299' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_10"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_20@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_20@example.jp"], ["encrypted_password", "$2a$04$9X.wYm6f9qldileGEdroTOcoIGcKGYnk/CFVV5ksQi9kNaIFIMGMO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_20"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.895499' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"hoge"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 9ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_21@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_21@example.jp"], ["encrypted_password", "$2a$04$0f0DvJRX9ujJlgj/N6oC1u6ph2cv/ezBPjOGlAz7uJteSxjYmAOIm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_21"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.925326' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_11"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_22@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_22@example.jp"], ["encrypted_password", "$2a$04$I4s1flOUE8ZM5tiCiIRqo.bPPcTTGuzKeDv4mQtdomoErjixgcN2i"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_22"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.941191' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"question_id"=>"1", "body"=>"hoge"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 SQL (0.7ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "hoge"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 1], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["url_list", nil], ["user_id", 3]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/7 Completed 302 Found in 20ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_23@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_23@example.jp"], ["encrypted_password", "$2a$04$skf/NB2uyc7w77s1x9seU.ZE0qcpuPv7JjCVzbETNjsqhlVrZDu8u"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_23"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.979483' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_12"], ["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_24@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_24@example.jp"], ["encrypted_password", "$2a$04$tgDks5iAtPbwXALdx3az5OvQfl.F8fKlOzluR2j3.LO3IBQhFgIkC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_group_id", 1], ["username", "user_24"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:57 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:57.992432' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"answer_12", "question_id"=>"7", "user_id"=>"9"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_25@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_25@example.jp"], ["encrypted_password", "$2a$04$iyFtbs66Jk/QAAwzGIwpCe45PZKcJVB1n0pvhrydRFew/Qe5plNxy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_group_id", 1], ["username", "user_25"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:58.021609' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_13"], ["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_26@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_26@example.jp"], ["encrypted_password", "$2a$04$C3127SC1GgRgG5V8F.hUnuY8A3bwo/IlgWOgjQpsEsiuGDTsEWo2S"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_group_id", 1], ["username", "user_26"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:58.038415' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"answer_13", "question_id"=>"7", "user_id"=>"9"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_27@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_27@example.jp"], ["encrypted_password", "$2a$04$I0oiqa2mKXWFz/eFh0PUjOttIyqxPVFja1GppS0gbXBYEAekLVldu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_group_id", 1], ["username", "user_27"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:58.061410' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_14"], ["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_28@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_28@example.jp"], ["encrypted_password", "$2a$04$zgCcYjsyvM90hy0jAWVt9eEd3gCIO5WsK0Hspb0F3fAWGs5VDE.VK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_group_id", 1], ["username", "user_28"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:58.077760' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_29@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_29@example.jp"], ["encrypted_password", "$2a$04$ARHmOnz8lGw889JvNiPDLuNSqh34NkiirpuPjREbvSZcyZVv7XcLi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_group_id", 1], ["username", "user_29"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:58.156695' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_15"], ["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_30@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_30@example.jp"], ["encrypted_password", "$2a$04$E17o5C0Yml1/V.C.mnZ64OYTSUNaPaEs54J21cbjHFcqNPipQS/1."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_group_id", 1], ["username", "user_30"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:58.167746' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.2ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 21ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 15ms Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 13ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 14ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 16ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 14ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"missing"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 6ms (Views: 0.9ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user2", "id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 10ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "question_id"=>"1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 15ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.2ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 19ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 17ms Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.7ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 6ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#destroy as HTML Parameters: {"id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 AnswerHasItem Load (0.1ms) SELECT "answer_has_items".* FROM "answer_has_items" WHERE "answer_has_items"."answer_id" = 3 SQL (0.3ms) DELETE FROM "answers" WHERE "answers"."id" = ? [["id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Redirected to http://test.host/questions/1/answers Completed 302 Found in 15ms User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#destroy as HTML Parameters: {"id"=>"5"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 14ms (Views: 1.4ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Processing by AnswersController#destroy as HTML Parameters: {"id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_31@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_31@example.jp"], ["encrypted_password", "$2a$04$X3PQ0380fsoGxdcKaCy.8O0d5vOTcl06YaGJKJ7lslNCRPIqZiAvq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_group_id", 1], ["username", "user_31"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:58.818982' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_16"], ["created_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:58 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 230ms (Views: 217.7ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_32@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_32@example.jp"], ["encrypted_password", "$2a$04$xPxzB1dJnQS3jKJYNNiPuu6IrJ6MYGAywmm078BqjHjgwkJTZ32Mq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_32"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.072798' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_17"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_33@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_33@example.jp"], ["encrypted_password", "$2a$04$7Rj3knwL/ZZiajxx838FDOQ2TuirrF0pSLkNAr0rzJX5j3OkyaEEK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_33"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.105019' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_18"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_34@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_34@example.jp"], ["encrypted_password", "$2a$04$4KHrKHKCUrYdeYfSrpT5TuM4sWlSd4DoJWHwyBZuXaB77BWZqJTRm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_34"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.139070' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_19"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_35@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_35@example.jp"], ["encrypted_password", "$2a$04$Umql2vmjXtIp8KRZA4iq5u1yiqkyHOWtkoVsNCwd7bgiDepya/GGy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_35"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.171345' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_20"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"missing"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 9ms (Views: 1.1ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_36@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_36@example.jp"], ["encrypted_password", "$2a$04$S/u3MDme/Egdb5scfbbGLeFu7C3XNT/NcSVy9Xr3qnWlz5DxS2BHq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_36"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.200556' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_21"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 3]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_37@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_37@example.jp"], ["encrypted_password", "$2a$04$J0GmJNqvu0wHJmB5wwC/hefUmzXSH.zwQsPfxdXU4PXYCn0d8kEPi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_37"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.234468' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_22"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 5]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_38@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_38@example.jp"], ["encrypted_password", "$2a$04$fzFlZhxl4uAJzRjMGmEtiuKpJUdNaXyo6xy9JsAaVLLsrYabo3XGK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_38"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.268177' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_23"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.1ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_39@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_39@example.jp"], ["encrypted_password", "$2a$04$elzQKhrFIPqVzl/4.OqSEumz7zMWAs.uhCVjiCIBmE0Zn2LI/YYAG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_39"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.298070' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_24"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#show as XML Parameters: {"mode"=>"crd", "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Completed 200 OK in 48ms (Views: 41.1ms | ActiveRecord: 0.1ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 15ms (Views: 2.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Processing by QuestionsController#new as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_40@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_40@example.jp"], ["encrypted_password", "$2a$04$9ujRpF64dyTdYVORqhsh8ev5u/MrjDPIis9kqScx.eUIgZ9eickTS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_40"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.426967' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_25"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 16ms (Views: 3.4ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_41@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_41@example.jp"], ["encrypted_password", "$2a$04$qJrir.QvkBntbQKBxypyTuqcA1eQR/rpoVZuSdyQX8G.c9RjrjJPC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_41"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.462786' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_26"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 10ms (Views: 1.2ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_42@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_42@example.jp"], ["encrypted_password", "$2a$04$etAX9/XwYMJHmnI97j/oM.yKQ4Qw6v/AJnhO5CLDJCG6FLq9PYEye"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_42"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.496673' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_27"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 11ms (Views: 1.0ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_43@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_43@example.jp"], ["encrypted_password", "$2a$04$rGIo7HqoNbUECktsE6oF5OM4fha6WUpx0cMZ1zsMImvYR79AMhL7m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_43"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.528944' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_28"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 13ms (Views: 1.3ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_44@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (44.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_44@example.jp"], ["encrypted_password", "$2a$04$ur/f8a0TC3uCTNUkKR0IQ.8r6GZhTx3rxmDcdEk9h1qtUfLH7uOgy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_44"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.604207' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_29"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 9ms (Views: 0.9ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_45@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_45@example.jp"], ["encrypted_password", "$2a$04$S3xANgMSKnW3NWp4WLB5z.GAO9thm/PMbptQkF3YfMA0/ECBvEHUe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_45"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.633883' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_30"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_46@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_46@example.jp"], ["encrypted_password", "$2a$04$xKrCrR3nyvAEI3Bz2jDy6.blaONG4qrs.Llvo1j26SAjCsImGzHJW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_46"]] SQL (0.4ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.666734' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_31"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 12ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_47@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_47@example.jp"], ["encrypted_password", "$2a$04$YHag2V1m6Lm22tmj2md0hefIqJhG74i.OUcBxsCklLS/zyKFR5lme"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_47"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.698721' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_32", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_32"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 15ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_48@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_48@example.jp"], ["encrypted_password", "$2a$04$BRR3lF4Xy7gIUhP.rxfz0ehWdfjkYpE8SEufB5/UqfBWWX003CyJy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_48"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.730415' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_33", "user_id"=>"8"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_33"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 19ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_49@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_49@example.jp"], ["encrypted_password", "$2a$04$.vOaLVjBMJ51wiubg9w6HOJX0P5cWuNrD4Y5C/3fpTIX.lRuqYNY6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_49"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.767422' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_50@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_50@example.jp"], ["encrypted_password", "$2a$04$UHhRXGcfSAXFGhVtLC.7B.yYeZ.l2xqTmFd/PiMDHlVvfFhmI8esC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_50"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.793394' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 1.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_51@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_51@example.jp"], ["encrypted_password", "$2a$04$3SBILRrc3y8VFB3Ky4gnK.pxxsCHOdSgXDryJJxHQk0.KOh7UAudC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_51"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.825591' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_36", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_36"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 14ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_52@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_52@example.jp"], ["encrypted_password", "$2a$04$bsxdIt8RaYBFeDZIcyT5Guhxjyomix4WCBl6A0g3gUrgSgXzgm9hC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_52"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.856558' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_37", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_37"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 15ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_53@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_53@example.jp"], ["encrypted_password", "$2a$04$Fm6zaPl/hpS6Q1vnJnvv..M7lYJXdJ7aP28VAr8Gqu7OwioaJLR.K"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_53"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.886063' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 1.1ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_54@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_54@example.jp"], ["encrypted_password", "$2a$04$u1IgQFE9yiVZw8wC3fG3C.lr4YvYssME5qijOnDjqXdH1sNzlJfKC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_54"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.917396' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 1.1ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_55@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_55@example.jp"], ["encrypted_password", "$2a$04$dThGAOCDzTaCvWPMqVabiOffxa0uzZADLcWjqqqedkr4jfSIs5mDO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_55"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.944712' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_40", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_40"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 13ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_56@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_56@example.jp"], ["encrypted_password", "$2a$04$GhdDjdAJToS1RcGlvR4xDOebY.S3F0GTudAcE7GzWy4rcL9AfUAQy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_group_id", 1], ["username", "user_56"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:13:59.973529' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_41", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_41"], ["created_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:13:59 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 14ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_57@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_57@example.jp"], ["encrypted_password", "$2a$04$ZF3GIcJxFypJOnfPRakV5ONZxAC5tjhW6O3IjnCvn3eavd9x07kj6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_57"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.004691' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 1.1ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_58@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_58@example.jp"], ["encrypted_password", "$2a$04$NKHYZHbDbQq2zNuqC6Lxr.2k2bHFfkYEnjNrU36OKHvvStdZ84Dx6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_58"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.039942' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 1.7ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_59@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_59@example.jp"], ["encrypted_password", "$2a$04$gaKZv72N6FoIufqyXcj6OuSt6W9FYAxDVC21fDZFEw62WbjgKFOnm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_59"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.115389' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_44", "user_id"=>"8"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_60@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_60@example.jp"], ["encrypted_password", "$2a$04$YbruyhBf/kNkD5a3gUeXl.3oNXXrNSrfFS0cskCy0SU.D2h.nhRWW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_60"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.141594' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_45", "user_id"=>"8"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_61@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_61@example.jp"], ["encrypted_password", "$2a$04$ukA6fZErWRgU4fKykivo6ufGEz0ZDTNqWfSStSYBgyvlY1uabMUo."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_61"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.169027' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_62@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_62@example.jp"], ["encrypted_password", "$2a$04$.YV.GbHpdH48dhZCfONhYuZv5O56dT7sdpxieCxt.1VhTrVjZ2xCa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_62"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.191966' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_63@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_63@example.jp"], ["encrypted_password", "$2a$04$fE6I7qFJ8iJktkQslWR/nOmN9SlCiConqiV0q/R/.N7/IvihXT8CG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_63"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.217501' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_48"], ["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_64@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_64@example.jp"], ["encrypted_password", "$2a$04$9xCflR0zVsMiZsRrnZnIDOLjtqR0qU2hi4RUBIyav2iYIh6GC0jpa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_64"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.235212' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_65@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_65@example.jp"], ["encrypted_password", "$2a$04$80i5qDRzTglf14dsqvPRaeIAiwQdJcZbDk41OdZ0jDEU6uLiWOyFa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_65"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.264070' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_50"], ["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_66@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_66@example.jp"], ["encrypted_password", "$2a$04$/a5MZSAuqN5/j5Aeq3Pqb.HlaBnWt2ebgRC/z.gsf2ocyeB9W2Ib6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_66"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 9]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.281825' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{}, "id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 10ms (Views: 1.3ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_67@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_67@example.jp"], ["encrypted_password", "$2a$04$CrI7v/bKaDdUSrN7.vhlae7WKTsMnH.vsEI7oQ9NQMUwin3gObK6W"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_67"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.309740' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_52"], ["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_68@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_68@example.jp"], ["encrypted_password", "$2a$04$0x4w7lDnBXSTc5gmt8RqaeWxwZaZWgSdd2wzIITgcEQd5REVahTMa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_68"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.323812' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_53", "user_id"=>"9"}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_53', "user_id" = 9, "updated_at" = '2012-01-20 16:14:00.337903' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 14ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_69@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_69@example.jp"], ["encrypted_password", "$2a$04$mxIwfNRsej9eguebwHHegubtlPS.v9p2q534nf642809renFUQGP6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_69"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.353107' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_54"], ["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_70@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_70@example.jp"], ["encrypted_password", "$2a$04$nCGpz5HvlhrYHp0bqnZ3wOrCzU7TOg1Z5/oKSiBDZ3Wv9GOuxXQZm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_70"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.366533' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_55", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_55', "user_id" = 9, "updated_at" = '2012-01-20 16:14:00.383847' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 17ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_71@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_71@example.jp"], ["encrypted_password", "$2a$04$inHFmT/gCgAEX4qTyL6ZAObg1YwqSs/QevVyH75GmxvOiVvEGZwKm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_71"]] SQL (0.8ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.400252' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_56"], ["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_72@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_72@example.jp"], ["encrypted_password", "$2a$04$5tesx1osAkiZ.DcRcJnTKeEtE.H0yZuFtrXtcXU4DIJMxsO7exvUy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_72"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.413733' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_73@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_73@example.jp"], ["encrypted_password", "$2a$04$8/Dy3nKuY4UoAtqfot70pOswaoBEunh.gQcJ4EYhoGOCDx4Yw6CDK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_73"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.442893' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_58"], ["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_74@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_74@example.jp"], ["encrypted_password", "$2a$04$FEmoKNdkFBV.dFcHYF/RLOQBHaxxrKb.4lmvcTwy55d1hfYyb/SCm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_74"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 9]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.460126' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 16ms (Views: 1.4ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_75@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_75@example.jp"], ["encrypted_password", "$2a$04$CSkES2ZomWjiB7lPZAvQFujblza8IVpQolI5hEbnfuDOgHUpH/66K"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_75"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.491701' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_60"], ["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_76@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_76@example.jp"], ["encrypted_password", "$2a$04$/Q5RVxg5DKzDkSbU9LJaeeq0Ti9w.motF/AqbQ./z5aa/m9L5qSBi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_76"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.508691' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_61", "user_id"=>"9"}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_61', "user_id" = 9, "updated_at" = '2012-01-20 16:14:00.522233' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 13ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_77@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_77@example.jp"], ["encrypted_password", "$2a$04$Vk7a.fETfcEEFU5YHGHrB.2jRLgCskG4kdoyjRwewFV/CG0uRV6pa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_77"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.538113' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_62"], ["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_78@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_78@example.jp"], ["encrypted_password", "$2a$04$nDblCDYYflNfkFkKztIfZu20DVPlLw2A37D7Zm5oUGQHdeaRIxQ.C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_78"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.554019' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_63", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_63', "user_id" = 9, "updated_at" = '2012-01-20 16:14:00.603190' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 48ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_79@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_79@example.jp"], ["encrypted_password", "$2a$04$hfsdIG.W9x.Oz8v9LwnEVu0tDYRGODO9CA9D8RsDyAv2JVXb6mqZG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_79"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.619225' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_64"], ["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_80@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_80@example.jp"], ["encrypted_password", "$2a$04$zzFEPJpdokiAtlMcabQiQ.R9KJZic8SunftAiMx5znB9J72WbthHa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_80"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.631387' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_81@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_81@example.jp"], ["encrypted_password", "$2a$04$5mNV5t6WQgJCT1e2zxUJb.u.FFjmGZZlXP6.vtv2R5Cfc8YJ9CRse"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_81"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.660849' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_66"], ["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_82@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_82@example.jp"], ["encrypted_password", "$2a$04$p3vvO/wFBuWyfizcoT7g7eVmhvbpBYJPyzCCoKAJMpadLc4i33zDC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_82"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.675956' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.3ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_83@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_83@example.jp"], ["encrypted_password", "$2a$04$Ebu4ap03ccR41EA0jjzb4u.70pImPhqp1XGunde4g3nyaP06ywrMO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_83"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.704011' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_68"], ["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_84@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_84@example.jp"], ["encrypted_password", "$2a$04$nThwazY/UybpQkK2ZsiwrOeI6NZqKx9.Vqw8SbZKVtq5mYBIqpX76"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_84"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.717169' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/3 Completed 302 Found in 12ms Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 3]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_85@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_85@example.jp"], ["encrypted_password", "$2a$04$ToHGrlvu6qfW06GkeYTzBu4lWYD2RUpCa9NocbnFSUhFgP4LbJiqK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_85"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.746280' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_70"], ["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_86@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_86@example.jp"], ["encrypted_password", "$2a$04$oj38h0Z1UNN6EmEPJt6.S.7evSYtMjyVRW84A0EK0ZqABXlbg64/C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_86"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.758295' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_71", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 13ms (Views: 1.0ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_87@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_87@example.jp"], ["encrypted_password", "$2a$04$75g1W6hOCj1OQJdoJgkUP.B6CnS3PtEj3K38RzSvZa.EQ8H6mTpb."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_87"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.785471' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_72"], ["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_88@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_88@example.jp"], ["encrypted_password", "$2a$04$fyr1GETGiZjy8I6nUlaJNOdWvsT3762loHtfzgtsRo7T65h4pGz/C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_88"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.799584' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_73", "user_id"=>"9"}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 11ms (Views: 1.2ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_89@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_89@example.jp"], ["encrypted_password", "$2a$04$5pSl3Slh.G1eQRF.mhdV.OcSGtMQLJn6Ha05qCMr/gPHfX958PzIW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_89"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.826446' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_74"], ["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_90@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_90@example.jp"], ["encrypted_password", "$2a$04$l3LOwIsZO4/QuW6fTr36Jecqn2QyuudJTmYzlwR1wpxfvX8lWA3AS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_90"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.840948' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 13ms (Views: 1.0ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_91@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_91@example.jp"], ["encrypted_password", "$2a$04$67XUUfL7hEXYs9TP4usy1.DwRDltl2mcd9edn9WA68oZu12xJ5oQm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_91"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.871583' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_76"], ["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_92@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_92@example.jp"], ["encrypted_password", "$2a$04$juUPcSA8oF9zdYvS2RQl2eJTbrgFVAMt9XnH1m6pNCBKY.f2mMp8m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_92"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.884807' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 11ms (Views: 1.0ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_93@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_93@example.jp"], ["encrypted_password", "$2a$04$YPsrROvVEG9wAuK9fCwefOJcoxlNNPMplXsXT4EoB3d7NUR5NhXVy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_93"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.910013' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_78"], ["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_94@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_94@example.jp"], ["encrypted_password", "$2a$04$UmyPuDaN522mHTMZPx4zNep1ydn6LnPO0shvxanKfvLhrbb8z3bO6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_94"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 9]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.924974' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_79", "user_id"=>"9"}, "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 12ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_95@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_95@example.jp"], ["encrypted_password", "$2a$04$UHx4meohDGaDe/C7eVyEs.as9O6Ghrmc723UJ0BR7vI7pLPN.lriW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_95"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.954230' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_80"], ["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_96@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_96@example.jp"], ["encrypted_password", "$2a$04$jKXZY514RC.749RzogrcBuQBHyJa9QzoHn9JvWtORnhBbUV19hy/."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_96"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:00.971477' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_81", "user_id"=>"9"}, "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_97@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_97@example.jp"], ["encrypted_password", "$2a$04$6Lyk60X0IUs.YiVpzjxRReadVfNTqS8PhR9N6fMuDO6BO3hTGLn6S"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:00 UTC +00:00], ["user_group_id", 1], ["username", "user_97"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:01.040213' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_82"], ["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_98@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_98@example.jp"], ["encrypted_password", "$2a$04$7.LFdADFIB6.b7yTg7kZOeA7bXj3IwxPRxN/LEMyfbLoll1/X784u"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_group_id", 1], ["username", "user_98"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:01.055575' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_99@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_99@example.jp"], ["encrypted_password", "$2a$04$q.69T79mfHfYsUGfl2hSJOqfTBKlHA1X3/gOuGVPOOMOoc35EcYES"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_group_id", 1], ["username", "user_99"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:01.080164' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_84"], ["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.2ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 31ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_100@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_100@example.jp"], ["encrypted_password", "$2a$04$LtgbvQ5QY2886PGV.icTD.H.yjL0hppJNxt4s/XFB/lCqReXuHq/2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_group_id", 1], ["username", "user_100"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:01.129376' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_85"], ["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 14ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_101@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_101@example.jp"], ["encrypted_password", "$2a$04$t30BoqMCLKetcq46/9lFr.LslW5lxermDFHpeYawd9ofDg6QjWfni"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_group_id", 1], ["username", "user_101"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:01.166573' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_86"], ["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 12ms (Views: 1.5ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_102@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_102@example.jp"], ["encrypted_password", "$2a$04$Jv5YuQasX/4FNy0YdyPY1Ok1U4rPk9XcbLacRwO6/Rsf1TP4yJLfa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_group_id", 1], ["username", "user_102"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:01.202902' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_87"], ["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 14ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_103@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_103@example.jp"], ["encrypted_password", "$2a$04$B1/jepQt3xWOnXVt8Aj9O.ZWpYVaJphgwg4KZYPBy9JDh/URIEope"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_group_id", 1], ["username", "user_103"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:01.235751' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_88"], ["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 18ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.2ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_104@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_104@example.jp"], ["encrypted_password", "$2a$04$B5DgJStxp98.hDm4ZR4/MeX2L7BhWtImERfX5PJqaxv.6794WQ7Sa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_group_id", 1], ["username", "user_104"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:01.273162' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_89"], ["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 10ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_105@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_105@example.jp"], ["encrypted_password", "$2a$04$xyMzK87aNJ/9xxMyibyyIOu2GvJFdt..vzx0Jxg6BuVzIOdxpEdLi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_group_id", 1], ["username", "user_105"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:01.301286' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_90"], ["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 13ms (Views: 1.0ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_106@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_106@example.jp"], ["encrypted_password", "$2a$04$GtCCEm9KRyURb2A3IMUsXOcH/enRAjpo1wPia7g8lmJlig4tzEq8G"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_group_id", 1], ["username", "user_106"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:01.334013' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_91"], ["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 3 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/users/3/questions Completed 302 Found in 16ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_107@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_107@example.jp"], ["encrypted_password", "$2a$04$luITxtvl0JK7/yOlj/b1Eurecaq8JsE0if3FG7O0wq76AMa9EJWL6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_group_id", 1], ["username", "user_107"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:01.372790' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_92"], ["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 10ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_108@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_108@example.jp"], ["encrypted_password", "$2a$04$a2fzS01xs/JwBkl/VhkVyuLMU9OuQ.PlMMVH4z43yNAAW134.Pzea"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_group_id", 1], ["username", "user_108"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:01.403358' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_93"], ["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 10ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_109@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_109@example.jp"], ["encrypted_password", "$2a$04$Cqhmx5um9tO7sUdMHG5UbuaXRAu0HwvlNfipzGstjYeh4ixkm7HyO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_group_id", 1], ["username", "user_109"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:01.432843' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_94"], ["created_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:01 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 1]] Answer Load (0.2ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 1 ORDER BY id DESC LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 1 ORDER BY id DESC LIMIT 1 Fixture Delete (0.4ms) DELETE FROM "answer_has_items" Fixture Insert (0.1ms) INSERT INTO "answer_has_items" ("updated_at", "item_id", "answer_id", "id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 1, 1, 1, '2007-12-25 17:28:47.252993') Fixture Insert (0.0ms) INSERT INTO "answer_has_items" ("updated_at", "item_id", "answer_id", "id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 2, 2, 2, '2007-12-25 17:28:47.252993') Fixture Delete (0.1ms) DELETE FROM "answers" Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 1, 1, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 2, 2, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 3, 3, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 4, 4, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 5, 5, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 6, 1, '2007-12-25 17:28:47.252993') Fixture Delete (5.0ms) DELETE FROM "questions" Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'Yahoo', 1, 1, 't', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 2, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 3, 3, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 4, 4, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:48.252993', 'test', 5, 5, 't', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 6, 1, 'f', '2007-12-25 17:28:47.252993') Fixture Delete (0.1ms) DELETE FROM "roles" Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Guest', 'Guest', 1, NULL, '2012-01-20 16:14:30', '2012-01-20 16:14:30') Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('User', 'User', 2, NULL, '2012-01-20 16:14:30', '2012-01-20 16:14:30') Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Librarian', 'Librarian', 3, NULL, '2012-01-20 16:14:30', '2012-01-20 16:14:30') Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Administrator', 'Administrator', 4, NULL, '2012-01-20 16:14:30', '2012-01-20 16:14:30') Fixture Delete (0.1ms) DELETE FROM "user_groups" Fixture Insert (0.1ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('(not specified)', '(not specified)', '2007-12-13 12:00:51.564542', 1, '', '2007-12-13 12:00:01.674976', 1) Fixture Insert (0.1ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('User', 'User', '2007-12-22 18:14:56.836548', 2, '', '2007-12-22 18:14:40.173954', 2) Fixture Insert (0.1ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('Faculty', 'Faculty', '2007-12-22 18:15:05.134351', 3, '', '2007-12-22 18:15:05.126457', 3) Fixture Delete (0.1ms) DELETE FROM "user_has_roles" Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (1, 4, '2012-01-20 16:14:30', '2012-01-20 16:14:30', 135138680) Fixture Insert (0.0ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (2, 3, '2012-01-20 16:14:30', '2012-01-20 16:14:30', 344583537) Fixture Insert (0.0ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (3, 2, '2012-01-20 16:14:30', '2012-01-20 16:14:30', 206669143) Fixture Insert (0.0ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (4, 3, '2012-01-20 16:14:30', '2012-01-20 16:14:30', 226540757) Fixture Insert (0.1ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (5, 2, '2012-01-20 16:14:30', '2012-01-20 16:14:30', 358143215) Fixture Insert (0.0ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (6, 2, '2012-01-20 16:14:30', '2012-01-20 16:14:30', 576709754) Fixture Insert (0.0ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (7, 2, '2012-01-20 16:14:30', '2012-01-20 16:14:30', 1010528733) Fixture Delete (0.2ms) DELETE FROM "users" Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:16:30.163731', '$2a$10$vHohD1WflnTIqAa8zMkF9evwAgIZRw3XuR4d3bi29M.jph/MB/AJi', 2, 1, NULL, 'admin', 'tanabe@kamata.lib.teu.ac.jp', '2007-11-19 07:58:32.111941', 4) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 03:41:16.337474', '$2a$10$9O2VuTccN4gHq36ARg0QReSrb1D7WrBBhZZ759RM9moHbB0W5zCzS', 1, 2, NULL, 'librarian1', 'librarian1@kamata.lib.teu.ac.jp', '2007-11-19 07:58:33.172441', 1) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', '$2a$10$JthS59A0BNkDOoFpCXM0V.GhhffKaoWKbzpPahYp/vTFrOyM7h/uW', 1, 3, NULL, 'user1', 'user1@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "created_at", "required_role_id") VALUES ('2008-05-31 03:42:23.340575', '$2a$10$YmmTGrYQ1Ir6oc7wXnp.GuNeO1eYLoP3sv8wMSIrTdaGw2BPwRrpS', 1, 4, NULL, 'librarian2', '2008-01-18 03:24:04.222344', 1) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "created_at", "required_role_id") VALUES ('2008-05-31 03:42:44.711117', '$2a$10$i7UjJhLVrJM/J7qaTwW39OXw1NiwowUEbtNHVDV0sqMLjX9.UO9ca', 1, 5, NULL, 'user2', '2008-01-18 04:29:06.922728', 2) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', 'cc53de0c2d9a1a228daa9a673ec824473747e17507a6c3c4f7e5eff8821f531d4b9e23616b3ddc66fe17006b2298a556fbd567ac080e87f00f37eef8cee6c417', 1, 6, NULL, 'user3', 'user3@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', 'cc53de0c2d9a1a228daa9a673ec824473747e17507a6c3c4f7e5eff8821f531d4b9e23616b3ddc66fe17006b2298a556fbd567ac080e87f00f37eef8cee6c417', 1, 7, NULL, 'user4', 'user4@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by AnswersController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers" Rendered /Users/kosuke/enju_question/app/views/answers/index.html.erb within layouts/application (2.8ms) Completed 200 OK in 61ms (Views: 17.6ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "answers"  User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by AnswersController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers"  Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "answers" User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 403 Forbidden in 9ms (Views: 1.3ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 403 Forbidden in 7ms (Views: 1.2ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML Parameters: {"user_id"=>"user1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3 Completed 200 OK in 18ms (Views: 1.3ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#index as HTML Parameters: {"user_id"=>"user2"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2' LIMIT 1 Completed 403 Forbidden in 9ms (Views: 1.3ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as RSS Parameters: {"user_id"=>"user1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3 Completed 200 OK in 17ms (Views: 8.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by AnswersController#index as HTML Parameters: {"question_id"=>"2", "user_id"=>"librarian1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'librarian1' LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "2"]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Completed 403 Forbidden in 30ms (Views: 1.0ms | ActiveRecord: 0.8ms | Solr: 0.0ms) Processing by AnswersController#index as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Processing by AnswersController#index as HTML Parameters: {"question_id"=>"1"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 1 Completed 200 OK in 12ms (Views: 1.2ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Processing by AnswersController#index as HTML Parameters: {"question_id"=>"5"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 5 Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Processing by AnswersController#index as RSS Parameters: {"question_id"=>"2"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "2"]] Completed 406 Not Acceptable in 6ms Processing by AnswersController#index as RSS Parameters: {"question_id"=>"5"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 5 Completed 200 OK in 8ms (Views: 1.1ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_1@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_1@example.jp"], ["encrypted_password", "$2a$04$/y7UheDlFi2HCUZxCKyABuKREye0XcI47Ti.peN8dI/PmZ.hFZFj."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_group_id", 1], ["username", "user_1"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:31.325509' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_1"], ["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_2@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (60.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_2@example.jp"], ["encrypted_password", "$2a$04$fmJZa7yhEP3FMX7wvyb0Jed8Z1cksMW80evHPoflN/1gOlbVyrSkq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_group_id", 1], ["username", "user_2"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:31.398549' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_1"], ["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.2ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 15ms (Views: 1.7ms | ActiveRecord: 0.5ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_3@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_3@example.jp"], ["encrypted_password", "$2a$04$WXL0jSf7WJRCBPEDxzrSjOWNkZgKGQsx.eWSJ2rq2WrRN7ElRU53."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_group_id", 1], ["username", "user_3"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:31.446910' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_2"], ["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_4@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_4@example.jp"], ["encrypted_password", "$2a$04$Tus2zaW6pX1z1FtbawujB.cmJCLbAWvXsHqYkyh3eN0hP27NAKJq6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_group_id", 1], ["username", "user_4"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:31.460317' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_2"], ["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_5@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_5@example.jp"], ["encrypted_password", "$2a$04$QOYAYPKDaC3q0RjMtWcczeNRMitx2mV4W8FqaDIgXsQLXa2AwpEaK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_group_id", 1], ["username", "user_5"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:31.491401' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_3"], ["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_6@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_6@example.jp"], ["encrypted_password", "$2a$04$7cnm9kPLg9yzR8SUTL.IJOpfPNvreRRc0vXVH460HQhWWvlYf1nee"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_group_id", 1], ["username", "user_6"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:31.503175' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_3"], ["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Completed 200 OK in 11ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"4"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 4 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 10ms (Views: 1.1ms | ActiveRecord: 0.5ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"missing"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 7ms (Views: 1.6ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user2", "question_id"=>"2", "id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 9ms (Views: 0.9ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"question_id"=>"2", "id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 12ms (Views: 1.1ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_7@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_7@example.jp"], ["encrypted_password", "$2a$04$K3WECJX8HO4b9.GHfWIavO3w81.c/IbJa2cPT4QpqUJuMOmQldGNu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_group_id", 1], ["username", "user_7"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:31.629290' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_4"], ["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_8@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_8@example.jp"], ["encrypted_password", "$2a$04$vnMIw7lffibmSPlIXduqPOUVLXlYOCgwrFZkgfSp1VcbynxlcOTpC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_group_id", 1], ["username", "user_8"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:31.641079' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_4"], ["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 9ms (Views: 1.4ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"4"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by AnswersController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 10ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 8ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 9ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML Parameters: {"question_id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 11ms (Views: 1.6ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Processing by AnswersController#new as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_9@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_9@example.jp"], ["encrypted_password", "$2a$04$rB7XtOW5TnrGtB8Nn1OwlOfHKvt1cA9YNJGr1etwQLbrtcSem8Aeu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_group_id", 1], ["username", "user_9"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:31.771972' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_5"], ["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_10@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_10@example.jp"], ["encrypted_password", "$2a$04$AzPrv7KghSj..urbuyGkrOmkOFCI36VE3oqcjKyMGangTyqzxgXmO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_group_id", 1], ["username", "user_10"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:31.785974' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_5"], ["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 12ms (Views: 1.6ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_11@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_11@example.jp"], ["encrypted_password", "$2a$04$e71vmE3P4uzRNkt7mUL7COTt4Q39sm5ArIRYnc29HNXPjemQ2RwIu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_group_id", 1], ["username", "user_11"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:31.820764' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_6"], ["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_12@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_12@example.jp"], ["encrypted_password", "$2a$04$4h5JlJ0ChIa1EQkqRvdGQeBt.i2xKZ5nzyOM9SADf26r3TUf8RDgu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_group_id", 1], ["username", "user_12"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:31.833404' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_6"], ["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Completed 403 Forbidden in 48ms (Views: 1.0ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_13@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_13@example.jp"], ["encrypted_password", "$2a$04$zK4ligcA2xfYiRZLGi7EJeMoBUWMiwEMJiYPjwj3QUqwJRcyL7mo2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_group_id", 1], ["username", "user_13"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:31.905309' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_7"], ["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_14@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_14@example.jp"], ["encrypted_password", "$2a$04$WOXj1QZ2GFepjLGhjU7nj.3HRlnLrJKdNTE0prT7nny57RULnlOFi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_group_id", 1], ["username", "user_14"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:31.920374' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_7"], ["created_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:31 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Completed 403 Forbidden in 11ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"question_id"=>"1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 14ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"question_id"=>"1", "id"=>"4"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 4 LIMIT 1 Completed 403 Forbidden in 13ms (Views: 0.9ms | ActiveRecord: 0.6ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"100"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "100"]] Completed 404 Not Found in 8ms (Views: 1.2ms | ActiveRecord: 0.2ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.5ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user2", "question_id"=>"2", "id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 11ms (Views: 1.0ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_15@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_15@example.jp"], ["encrypted_password", "$2a$04$nuahTrIHSDYVjTKmdFb7vOReKpF4IBAv1voCDgnn8s7ZSL57.Yam2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_group_id", 1], ["username", "user_15"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:32.037507' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_8"], ["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_16@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_16@example.jp"], ["encrypted_password", "$2a$04$fysNKw5Xsh4pkbbN2kY5XeuW3p3Al7xnpqlGzBoCHBpkZs4QTRAaG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_group_id", 1], ["username", "user_16"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:32.051423' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_8"], ["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 11ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_17@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_17@example.jp"], ["encrypted_password", "$2a$04$b7H2zFi8xh0O0sE0ggGCieBmZ55sce29F1WcCHifmzG.F1UISyeaK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_group_id", 1], ["username", "user_17"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:32.081287' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_9"], ["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_18@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_18@example.jp"], ["encrypted_password", "$2a$04$OKONVsr.mVQlDU9V4w6c2ewwsXdXQ48x43otlr1srWvtaKrHDGUwi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_group_id", 1], ["username", "user_18"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:32.093007' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"question_id"=>"1", "body"=>"hoge"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 SQL (0.7ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "hoge"], ["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 1], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["url_list", nil], ["user_id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/7 Completed 302 Found in 17ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_19@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_19@example.jp"], ["encrypted_password", "$2a$04$80txqIvHcocG..w04axI9.33rfJ/R4C6dbR40Xs2GgRhvrTml.wra"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_group_id", 1], ["username", "user_19"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:32.124390' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_10"], ["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_20@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_20@example.jp"], ["encrypted_password", "$2a$04$4gMuectimRXqFHARHZcMZ.Qi1RbUe/EI/ggRtY90sZc4Q/t6xSIue"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_group_id", 1], ["username", "user_20"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:32.136882' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"hoge"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 9ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_21@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_21@example.jp"], ["encrypted_password", "$2a$04$G3cr8akpAtI4ta7DEESjjeDX6CrFuRA5X0v3e1y63AQBumSR7ZiG."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_group_id", 1], ["username", "user_21"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:32.163063' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_11"], ["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_22@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_22@example.jp"], ["encrypted_password", "$2a$04$liyXu5vYaZ0mIo3vPyU6GeGa6mHaeT/K/bXcGHDb9vE8Y3kJ6g/3G"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_group_id", 1], ["username", "user_22"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:32.175414' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"question_id"=>"1", "body"=>"hoge"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 SQL (0.9ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "hoge"], ["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 1], ["shared", true], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["url_list", nil], ["user_id", 3]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/7 Completed 302 Found in 18ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_23@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_23@example.jp"], ["encrypted_password", "$2a$04$eyEMGfjSiBCoZ2dd37HC3.w3rSZdkjh1NM9h.VdkSUx4fSqdB3lnu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_group_id", 1], ["username", "user_23"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:32.209792' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_12"], ["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_24@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_24@example.jp"], ["encrypted_password", "$2a$04$XgaBFwYBwTG1Y7VMFGU0K.NX4E8C7sL6mZ15o0Yw34aBAciLagaPa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_group_id", 1], ["username", "user_24"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:32.222094' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"answer_12", "question_id"=>"7", "user_id"=>"9"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_25@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_25@example.jp"], ["encrypted_password", "$2a$04$kIokLQMa4VF5DKsARUjZ4.bkOyHnCgj2qC9MzyUL7qZhNGt.JFm7C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_group_id", 1], ["username", "user_25"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:32.249044' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_13"], ["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_26@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_26@example.jp"], ["encrypted_password", "$2a$04$YLOVNpZ4P2Q9fGuNFI.DTehIb6RycHlt9i2av7B.6E6ZEgF2JLvjq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_group_id", 1], ["username", "user_26"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:32.261390' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"answer_13", "question_id"=>"7", "user_id"=>"9"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_27@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_27@example.jp"], ["encrypted_password", "$2a$04$EGj8doTfgrhEpEiIrUOHZ.8pnvN9Cl/eJptJW1hyeKtF.rOCKUcT."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_group_id", 1], ["username", "user_27"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:32.282315' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_14"], ["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_28@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (56.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_28@example.jp"], ["encrypted_password", "$2a$04$j3Y4Vg/SvG3VJ.aerZqlgeZnb5bnleEt4W42MIQbmv9MRA4i.EhCi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_group_id", 1], ["username", "user_28"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:32.353980' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_29@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_29@example.jp"], ["encrypted_password", "$2a$04$0QEntsCiEFLW.m2dzCj7g.eRbAeA.BO/i.Sa6feJ64wB1mJAoQStu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_group_id", 1], ["username", "user_29"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:32.375171' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_15"], ["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_30@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_30@example.jp"], ["encrypted_password", "$2a$04$WXXrf8e6ulTViv27INI3lenhzLV8jmCB0oKuZ3VHOGLeML.Yzaow2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_group_id", 1], ["username", "user_30"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:32 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:32.388919' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 21ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 13ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.7ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 13ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 13ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 12ms Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 13ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"missing"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 6ms (Views: 0.9ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user2", "id"=>"5"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 12ms (Views: 0.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "question_id"=>"1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 15ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 13ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 14ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.3ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.7ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 6ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#destroy as HTML Parameters: {"id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 AnswerHasItem Load (0.1ms) SELECT "answer_has_items".* FROM "answer_has_items" WHERE "answer_has_items"."answer_id" = 3 SQL (0.3ms) DELETE FROM "answers" WHERE "answers"."id" = ? [["id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Redirected to http://test.host/questions/1/answers Completed 302 Found in 11ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#destroy as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 9ms (Views: 0.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Processing by AnswersController#destroy as HTML Parameters: {"id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 SOLR Request (3.8ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (2.9ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.3ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (5, 1, 2, 3, 4, 6) ORDER BY id DESC Completed 200 OK in 81ms (Views: 46.1ms | ActiveRecord: 0.7ms | Solr: 6.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#index as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 SOLR Request (3.2ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (3.8ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.3ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (5, 1, 2, 3, 4, 6) ORDER BY id DESC Completed 200 OK in 32ms (Views: 1.4ms | ActiveRecord: 0.7ms | Solr: 7.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#index as RSS User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 SOLR Request (3.8ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (4.2ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.4ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (5, 1, 2, 3, 4, 6) ORDER BY id DESC Completed 200 OK in 50ms (Views: 14.3ms | ActiveRecord: 0.7ms | Solr: 8.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#index as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 SOLR Request (3.7ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (3.1ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (5, 1) ORDER BY id DESC Completed 200 OK in 27ms (Views: 1.3ms | ActiveRecord: 0.7ms | Solr: 6.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#index as RSS User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 SOLR Request (4.1ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (4.0ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.3ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (5, 1) ORDER BY id DESC Completed 200 OK in 28ms (Views: 1.5ms | ActiveRecord: 0.6ms | Solr: 8.1ms) Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."shared" = 't' ORDER BY id DESC, updated_at LIMIT 10 OFFSET 0 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#index as RSS Parameters: {"user_id"=>"user1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 SOLR Request (4.0ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser1&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (3.4ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser1&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.3ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (3) ORDER BY id DESC Completed 200 OK in 26ms (Views: 1.8ms | ActiveRecord: 0.8ms | Solr: 7.5ms) Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."user_id" = 3 ORDER BY id DESC User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by QuestionsController#index as HTML Parameters: {"user_id"=>"user2"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2' LIMIT 1 SOLR Request (4.1ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (3.4ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.4ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (5) ORDER BY id DESC Completed 200 OK in 29ms (Views: 1.6ms | ActiveRecord: 0.9ms | Solr: 7.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by QuestionsController#index as RSS Parameters: {"user_id"=>"user2"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2' LIMIT 1 SOLR Request (4.1ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (4.0ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.3ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (5) ORDER BY id DESC Completed 200 OK in 28ms (Views: 1.4ms | ActiveRecord: 0.8ms | Solr: 8.1ms) Processing by QuestionsController#index as HTML SOLR Request (3.7ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (3.5ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.4ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (5, 1, 2, 3, 4, 6) ORDER BY id DESC Completed 200 OK in 38ms (Views: 1.6ms | ActiveRecord: 0.4ms | Solr: 7.2ms) Processing by QuestionsController#index as HTML Parameters: {"query"=>"Yahoo"} SOLR Request (25.9ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (3.9ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.3ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (1) ORDER BY id DESC Completed 200 OK in 64ms (Views: 1.5ms | ActiveRecord: 0.3ms | Solr: 29.8ms) Processing by QuestionsController#index as XML Parameters: {"query"=>"Yahoo", "mode"=>"crd"} SOLR Request (19.5ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (4.0ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (1) ORDER BY id DESC Completed 200 OK in 75ms (Views: 27.4ms | ActiveRecord: 0.2ms | Solr: 23.5ms) Role Load (0.3ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_31@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_31@example.jp"], ["encrypted_password", "$2a$04$Z6cuw.5bZUX4nlqruS9T.e2K12d80ves1CFZefu3yuf64muNvmhBy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_group_id", 1], ["username", "user_31"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:34.675607' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_16"], ["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 14ms (Views: 1.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_32@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_32@example.jp"], ["encrypted_password", "$2a$04$s88gNzmE99O3FdYMpuWn2ecNf.JEf5nEEEYHjFcZ4C8IO56juHZTW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_group_id", 1], ["username", "user_32"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:34.713990' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_17"], ["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 13ms (Views: 1.2ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_33@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_33@example.jp"], ["encrypted_password", "$2a$04$AxKIMSoojxuWM6XJU8dzwOsB31agrwcJommtYODySm8xtcxykS1Ye"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_group_id", 1], ["username", "user_33"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:34.749934' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_18"], ["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_34@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_34@example.jp"], ["encrypted_password", "$2a$04$37HFJLDry6ngCwGg87Nb8OfO4TdvIDQCHWBHMAUF71rAeCIi1mpMK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_group_id", 1], ["username", "user_34"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:34.784139' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_19"], ["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 200 OK in 15ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_35@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_35@example.jp"], ["encrypted_password", "$2a$04$qvuN9kqKkz8f69Boz1BRK.GqGT7svPU9b2L6cmSuMApeRW.8A9/hS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_group_id", 1], ["username", "user_35"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:34.834541' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_20"], ["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 11ms (Views: 1.4ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.3ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.2ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_36@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (108.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_36@example.jp"], ["encrypted_password", "$2a$04$EC3NcuIbMBIrX9Gs36eXh.qyS1PyfQluUOqvkDe4ychg3BLXayFmu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_group_id", 1], ["username", "user_36"]] SQL (0.4ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:34.981004' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_21"], ["created_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:34 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 17ms (Views: 1.5ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 3]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_37@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (3.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_37@example.jp"], ["encrypted_password", "$2a$04$h/.de.lpnYDGkTCI8/SSFeBbyEnXtKtkYk8Z1dxsC8fosR9oPsqYu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_37"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.029688' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_22"], ["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"5"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 200 OK in 16ms (Views: 1.4ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 5]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (1.0ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_38@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_38@example.jp"], ["encrypted_password", "$2a$04$y3AcWTSN5ak3VRsqoD3mv.6Yz0WiFApaFOZX/Tb5LW5gzHlJPjJ.G"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_38"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.075747' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_23"], ["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.1ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_39@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_39@example.jp"], ["encrypted_password", "$2a$04$qFxO3MPOEC2pAVboS6NQkO6akOgI74mYIoO/IjEU5KKlpoKxCMUfO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_39"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.110413' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_24"], ["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#show as XML Parameters: {"mode"=>"crd", "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Completed 200 OK in 14ms (Views: 4.0ms | ActiveRecord: 0.1ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 17ms (Views: 2.5ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 12ms (Views: 1.3ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 200 OK in 15ms (Views: 1.4ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Processing by QuestionsController#new as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 11ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_40@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_40@example.jp"], ["encrypted_password", "$2a$04$RXrJ/lDARp0X.tt/Ep8RzuZ8B34d0T3Chd4lJ8Y4fc04FQukrlmdK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_40"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.238274' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_25"], ["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 15ms (Views: 2.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_41@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_41@example.jp"], ["encrypted_password", "$2a$04$kp9F3RgkadxRXxODVkxDeePBgrUAYmnlEip4RHNq/4LcnC7xAwcyq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_41"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.277917' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_26"], ["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 15ms (Views: 1.7ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_42@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_42@example.jp"], ["encrypted_password", "$2a$04$a5T0rddd6xIUzOGAKCHxEO/U5SZ.F3fW9i5DkV9IXM276tsKimDee"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_42"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.318825' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_27"], ["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 16ms (Views: 1.4ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_43@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_43@example.jp"], ["encrypted_password", "$2a$04$XK1QsAnT/vDu7nO7AI3XOeagL6ScAEUOhJEck6Xk0BY61P5g3GMai"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_43"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.357865' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_28"], ["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"5"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 15ms (Views: 1.3ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_44@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_44@example.jp"], ["encrypted_password", "$2a$04$45rcVAIt.afPotOGi8U2/OPd/6wagnZOd3Ad5YX6mxdGcGmTxXGra"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_44"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.399751' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_29"], ["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 11ms (Views: 1.8ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_45@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_45@example.jp"], ["encrypted_password", "$2a$04$.CDFCwW2MKMbplizN/Y.nusBg8yQQz0ARR/xkdP6UcRCVqBl8v4SG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_45"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.436036' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_30"], ["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 15ms (Views: 1.5ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_46@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_46@example.jp"], ["encrypted_password", "$2a$04$f7cepXMH7Ywoe6xPqpNeHOHm4xbbhQMWmH3ifx7I/Fu2//xa5lWyC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_46"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.477518' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_31"], ["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 12ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_47@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_47@example.jp"], ["encrypted_password", "$2a$04$pl5MRIrB4CTR0jfX8IzuQuv5r3mtKzNWXmrJm6MZ8h.vIzQIL9O5y"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_47"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.511773' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_32", "user_id"=>"8"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.3ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_32"], ["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 20ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_48@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_48@example.jp"], ["encrypted_password", "$2a$04$qvdPAxMtw2hvMD8GeE4N7ejvMb1fx8JbB9qSGU0dnqGx1cgLjysRC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_48"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.553601' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_33", "user_id"=>"8"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (4.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_33"], ["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 25ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_49@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_49@example.jp"], ["encrypted_password", "$2a$04$kkkOgzK6SKwKcRL2lDe6huVO3VM4.VaaGjeNoA2u0FmAym/Cig3y6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_49"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.599706' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 77ms (Views: 3.5ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_50@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_50@example.jp"], ["encrypted_password", "$2a$04$4iEG3MM0YPXrZIHTFC9lN.0ahcOFrgcTKqzyu2nQjGw5Y/m0JKZSS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_50"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.698612' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 17ms (Views: 1.4ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_51@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (3.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_51@example.jp"], ["encrypted_password", "$2a$04$DqEeN4LmEAqRP8jlVWRl2.NNcvBa3YwJhxiNS2lDSqCTG2fh.9Ri6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_51"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.737549' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_36", "user_id"=>"8"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_36"], ["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 19ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_52@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (4.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_52@example.jp"], ["encrypted_password", "$2a$04$uayxkanCc5yP6NEJHQCZ/eYC9/b3G8y.Pc8nO3FpGRdASrPe3KC/m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_52"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.780449' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_37", "user_id"=>"8"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_37"], ["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 28ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_53@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_53@example.jp"], ["encrypted_password", "$2a$04$vHZixPnblKlgeAC14NywteE53v2ozvb/r.g2N4whZUxbZtGl5tGyG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_53"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.831017' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 21ms (Views: 1.4ms | ActiveRecord: 0.7ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_54@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_54@example.jp"], ["encrypted_password", "$2a$04$19pmKsizcn37wIJzNhqt2eKEXLtVDDQI13N5N6/o.X9xKTmO/x/cm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_54"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.880010' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 20ms (Views: 1.4ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.3ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_55@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_55@example.jp"], ["encrypted_password", "$2a$04$l/2w3UsVGYmI44YPa6fwyOMu1KnhF.NMTZ9bkb8mJKhyDfDpsmTVO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_55"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.922780' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_40", "user_id"=>"8"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (2.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.3ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_40"], ["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 26ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_56@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_56@example.jp"], ["encrypted_password", "$2a$04$LsjvZJrhvJq6oEj466yOQ.aSgZ8GlAngG/q2qHRr.s.ljo31aaS7K"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_group_id", 1], ["username", "user_56"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:35 UTC +00:00], ["user_id", 8]]  (2.2ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:35.973569' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_41", "user_id"=>"8"}} User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_41"], ["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 26ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_57@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_57@example.jp"], ["encrypted_password", "$2a$04$py3glYbBzI9Q7CbNkDHceeyi.5w3nsmOnSeQegqlWQkTsJ1Bo4GAW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_57"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.6ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.026454' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 19ms (Views: 1.5ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_58@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (4.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_58@example.jp"], ["encrypted_password", "$2a$04$tY0bkdR9voRO.Q5PB5cDt.EU8UT5UuD1jBZjoIhlxkDXQQXlPo8ei"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_58"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.071074' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 17ms (Views: 1.4ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_59@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_59@example.jp"], ["encrypted_password", "$2a$04$HxR9P7cswC2V9RmB6R3zuuE5fokifQVApyqVWt25yUN9aebYxHvRS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_59"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.110920' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_44", "user_id"=>"8"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 13ms User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.2ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_60@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_60@example.jp"], ["encrypted_password", "$2a$04$PrB6wKaYOQYZeA3ZZ81kY.LecIG.dU9YT3petuD2EkcjajOuthA/O"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_60"]] SQL (0.4ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.151893' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_45", "user_id"=>"8"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 12ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_61@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_61@example.jp"], ["encrypted_password", "$2a$04$VXWzv8SVJEx/vqGvO9rDYe.3NcFIzWDAyYm6AyF.x/8S3qmu7UNlO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_61"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.189363' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 16ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_62@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_62@example.jp"], ["encrypted_password", "$2a$04$rhkx3uZFp0mXkivGoelmY.KaSCj.1DLypkLk3/5GdtpRIrEbnGnyW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_62"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.231366' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 16ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.2ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_63@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_63@example.jp"], ["encrypted_password", "$2a$04$kGKWsPFUS62IFfKwUx3Ppue6XH2WfxAv/LV8czcXkVVPoE4bCKu9y"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_63"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.286917' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.3ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_48"], ["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_64@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_64@example.jp"], ["encrypted_password", "$2a$04$WVt9QtTg0/Vce2Vddn/keeVe.31ArdVqtRrh35srf4VhD3XPpHl.q"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_64"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.328285' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 20ms (Views: 1.6ms | ActiveRecord: 0.8ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.2ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_65@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_65@example.jp"], ["encrypted_password", "$2a$04$uGmbrf60QnThPp6iD7hH3OiWY2k7Sp36c/m2OIHFCERZETHhOHOoK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_65"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.4ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.377563' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_50"], ["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_66@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (67.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_66@example.jp"], ["encrypted_password", "$2a$04$tvzYh02Q/qKTj.zfkuxUKuiF7VVsbzLNAbwKB8Vnjutdo.S1APAHa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_66"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 9]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.468574' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{}, "id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 14ms (Views: 1.4ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_67@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_67@example.jp"], ["encrypted_password", "$2a$04$CahWrdKJzMxU8pQWtcvAu.dFnJKeheVj1wFBBj1CjVBZNLLVtS6Q."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_67"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.514046' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (2.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_52"], ["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_68@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_68@example.jp"], ["encrypted_password", "$2a$04$rtffJtY/ISTFg.fHeDvcxu.Dii8wBxzT0Pvx1Lm3RQCSX4PXXWj1u"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_68"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.536704' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_53", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.2ms) UPDATE "questions" SET "body" = 'question_53', "user_id" = 9, "updated_at" = '2012-01-20 16:14:36.556812' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 21ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_69@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_69@example.jp"], ["encrypted_password", "$2a$04$nU6m63r32xCq/rj25navfOGAJn6rvb7JcNxXqDib5Rb3Q0vlvCiPu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_69"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.581552' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.3ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_54"], ["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_70@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (3.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_70@example.jp"], ["encrypted_password", "$2a$04$KGJve1j/3DIPv7mxTw0x3es2Wmlgg2elCo2l90z6n3f.1ttLfVJ/2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_70"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.601830' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_55", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_55', "user_id" = 9, "updated_at" = '2012-01-20 16:14:36.625224' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 23ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_71@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_71@example.jp"], ["encrypted_password", "$2a$04$0A8VU./F.ZfmcDoJuobT3OjyatkySIRBFv9uwUvRk8/857SWRKUt6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_71"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.652503' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_56"], ["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_72@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_72@example.jp"], ["encrypted_password", "$2a$04$my.rD4v9rA6wQO0dTwiWFevemCAoy/Isf845ZfX6wwFgjo.jssxOG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_72"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.672715' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 20ms (Views: 1.9ms | ActiveRecord: 0.7ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_73@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (3.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_73@example.jp"], ["encrypted_password", "$2a$04$9Hkny7Y88Wdbaq1zMXTacuPIquaeyoJscU/09Ywv7JjQFR2FWp1/i"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_73"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.714632' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_58"], ["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_74@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_74@example.jp"], ["encrypted_password", "$2a$04$Slfs3GRYZn8NDIX8XFK/S.1ymskbWNKrF2.LH3XKIjWCHeqwCH0I6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_74"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.736245' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 18ms (Views: 1.5ms | ActiveRecord: 0.7ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_75@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_75@example.jp"], ["encrypted_password", "$2a$04$jVxFaXY0SnLB3Nz8rGZ8Te.ttV7YwrWQ0BtLIe77NqSX.Y7jZpe.C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_75"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.774681' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.3ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_60"], ["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_76@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_76@example.jp"], ["encrypted_password", "$2a$04$NpePX3mR9r4zn0waGX4Xd..7JXMPOZ7uJniPuTIp64.DCtelVGGSC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_76"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.791845' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_61", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_61', "user_id" = 9, "updated_at" = '2012-01-20 16:14:36.808079' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 16ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_77@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_77@example.jp"], ["encrypted_password", "$2a$04$FN.wGl.U5ijN/s.rpKVEGudCnoqJuvx9P0vS.S2vNYVrWaMKSMU1y"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_77"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.826909' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.2ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_62"], ["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_78@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_78@example.jp"], ["encrypted_password", "$2a$04$aE8036D1aBQIjAOpD9P1d.EKDRQhE.cUrUQj6JK8sD.SJLzvKg8E6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_78"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 9]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.845806' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_63", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_63', "user_id" = 9, "updated_at" = '2012-01-20 16:14:36.860944' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 14ms Role Load (0.3ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_79@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_79@example.jp"], ["encrypted_password", "$2a$04$s3IcFj0uj9jv6UxHtRu/HODHTTLtXHNrhn9wfsG/JmxvLKQdgzUFW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_79"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.880461' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_64"], ["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_80@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_80@example.jp"], ["encrypted_password", "$2a$04$m.zgqFHnpF5Lf/4iJt5GQ.B8HEnlBO3S.tz86XNiiEzjkflb7rTmS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_80"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.894541' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_81@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_81@example.jp"], ["encrypted_password", "$2a$04$tZhcwZLSesFvJW4yCNOT0uhNTYj/KxhGsuW32fSciPxaftqJtFO7C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_81"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.920189' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_66"], ["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_82@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_82@example.jp"], ["encrypted_password", "$2a$04$KOkztdDWTWQZQoMfZKtFSOJeEvwVMQ.AfFejWNJSLcVuseV5BiqQC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_82"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.933351' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_83@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_83@example.jp"], ["encrypted_password", "$2a$04$bF.jeuhvetze0PweF7I9NuhEqEwgYZTMzKhUsBAtZtT6TqJ.SXvfa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_83"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.961513' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_68"], ["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_84@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_84@example.jp"], ["encrypted_password", "$2a$04$ZaZ96N2PMzaEirjlQdB7/.Ynrw8E618vHsbtP8JHXcudoPgjxySGO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_group_id", 1], ["username", "user_84"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:36 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:36.975861' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/3 Completed 302 Found in 12ms Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 3]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_85@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_85@example.jp"], ["encrypted_password", "$2a$04$kMKD5JKSzWWn3shju5gTe.6dZxhGl.8j4znU4lYTD7PIkWuAtfHM2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_85"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.039879' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_70"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_86@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_86@example.jp"], ["encrypted_password", "$2a$04$c83p1UkDxDU22lsiP3UqQu.vpiQldM00yB8K7jBrYaEhm6MhPzYiC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_86"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.055194' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_71", "user_id"=>"9"}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 10ms (Views: 1.2ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_87@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_87@example.jp"], ["encrypted_password", "$2a$04$kwgxiFjONjRJj70HMa0cwObf5vIeFzGrSg6wtQ6vIuqL8nJ2Ix3ge"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_87"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.2ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.078176' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.1ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_72"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_88@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_88@example.jp"], ["encrypted_password", "$2a$04$GChQW7jq48R0kAV1cpFBO.Os11VDLGulbm1.CFgRVfn7Jc0SQlOkK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_88"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.093901' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_73", "user_id"=>"9"}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 11ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_89@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_89@example.jp"], ["encrypted_password", "$2a$04$vlFwKWFqngUfhbM18w9qa.QW7I2Q1nSahTm7KpjlKOPjorAZfhQ2i"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_89"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.120257' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_74"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_90@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_90@example.jp"], ["encrypted_password", "$2a$04$Hv9iaa.LGRRt1svB7ys82ONuYsbyUXnLEKCRKst/WlFco1MBBY7ie"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_90"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.134394' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 10ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_91@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_91@example.jp"], ["encrypted_password", "$2a$04$Khbfgd6UwANQcd3t5mkG8uUvKGaVbG94qesKd2azQxdjgNtlx/Uia"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_91"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.158603' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_76"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_92@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_92@example.jp"], ["encrypted_password", "$2a$04$5j2.8umIqgcLfPrQ1.Mo1uHmMMsPgvzwKSrPIg3fcVGNAdSU/ewOy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_92"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.170987' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 11ms (Views: 1.0ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_93@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_93@example.jp"], ["encrypted_password", "$2a$04$aoTlGID2uOBfdKtSCfy1YeuIQ.pd3zKuBKqpa5eRQ1Pu7lTY985sG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_93"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.196986' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_78"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_94@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_94@example.jp"], ["encrypted_password", "$2a$04$bGRDkX0UlK0sI9IwMOS9V.Kg3ht1oghgiawicuEn53uQsooMjjWNa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_94"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.210321' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_79", "user_id"=>"9"}, "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.3ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_95@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_95@example.jp"], ["encrypted_password", "$2a$04$6unFa8ebKOB0VKo.nSG4M.cdLfsxabKW.8QTqqdGUGrysKIk/Cflu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_95"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.231309' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_80"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_96@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_96@example.jp"], ["encrypted_password", "$2a$04$XrstTL5/XVBV36wiromGiuMQT.md.2lv1m1e4QQ.PVnwaJqZwNFM2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_96"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.244141' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_81", "user_id"=>"9"}, "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 10ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_97@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_97@example.jp"], ["encrypted_password", "$2a$04$BlxAxlVBHGhSYu3YZo9/5.Vrfgbj.9WQo2tGfLEgDLnitKZtr8zqW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_97"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.268487' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_82"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_98@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_98@example.jp"], ["encrypted_password", "$2a$04$NK1SuZer00T6orkHMTo6/e7sjb/3lJWGh3Yi.xItHhFLCbdcKvPaa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_98"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 9]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.282080' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_99@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_99@example.jp"], ["encrypted_password", "$2a$04$b14TS44ceZKzxZ1PxZs4y.cw4YvOQ.dS6VcrM9rHe/CTV7MM6rCdG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_99"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.305824' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_84"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 25ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_100@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_100@example.jp"], ["encrypted_password", "$2a$04$JwpNOsphMiy2535h42o1juHY0QVzoPx2.M1hqsnA/JCbnyWicvjDC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_100"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.347576' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_85"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 15ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_101@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_101@example.jp"], ["encrypted_password", "$2a$04$I5Vgjm0tN.b1vwBMWKBbAOtH/aCqKuerOlR6uvrQiI8JuXsnkfqAO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_101"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.384504' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_86"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"missing"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 8ms (Views: 1.5ms | ActiveRecord: 0.2ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_102@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_102@example.jp"], ["encrypted_password", "$2a$04$5a52690WfwN1w9zAfppEkeWadmTmmTZc60pz3LUrWpM2ewtXUZ1b6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_102"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.448430' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_87"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 12ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_103@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_103@example.jp"], ["encrypted_password", "$2a$04$LjfCalT8A2XPocdFC6n4QeU.0nalTnDPQazGrGB3A4IzC8XAJBYHG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_103"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.478915' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_88"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 12ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_104@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_104@example.jp"], ["encrypted_password", "$2a$04$9JU299/vYJaBC1n2GtO.nuoRb9HXFm0xAU9XPNvhdxgl2qVQCnzwG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_104"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.509204' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_89"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 10ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_105@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_105@example.jp"], ["encrypted_password", "$2a$04$nffrgs5XP912yFVeveJAgeKaKbelDvKD/OvTE0C9k9Zr5nOp6i38."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_105"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.538224' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_90"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 11ms (Views: 1.0ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_106@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_106@example.jp"], ["encrypted_password", "$2a$04$.90HG7MLuK.drzjI/mTW.ucXiouT0d.SHs7kOt/cyqrtcv1I3uTJe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_106"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.568647' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_91"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 3 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/users/3/questions Completed 302 Found in 14ms Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_107@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_107@example.jp"], ["encrypted_password", "$2a$04$vfjNF8irjCHhL1KhPBYUOOJ8LjpN..g8JxSE7zIC3t7UYwA1HAn9q"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_107"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.602521' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_92"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 12ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_108@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_108@example.jp"], ["encrypted_password", "$2a$04$miLLskzOIC6fFmmiGeIWden3rAZ5ac5jTIIh1DHZDLnZFxWbuFK6a"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_108"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.634324' WHERE "roles"."id" = 2  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_93"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 10ms Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.2ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_109@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_109@example.jp"], ["encrypted_password", "$2a$04$2eEZGJYOIRFJA56fKAa8Cu3OChUI1DojFNMV1w9Lqzk7KUWTLlkIq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_group_id", 1], ["username", "user_109"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["role_id", 2], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) UPDATE "roles" SET "updated_at" = '2012-01-20 16:14:37.660249' WHERE "roles"."id" = 2  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_94"], ["created_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Fri, 20 Jan 2012 16:14:37 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 1]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 1 ORDER BY id DESC LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 1 ORDER BY id DESC LIMIT 1  (0.1ms) begin transaction Fixture Delete (0.3ms) DELETE FROM "answer_has_items" Fixture Insert (0.2ms) INSERT INTO "answer_has_items" ("updated_at", "item_id", "answer_id", "id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 1, 1, 1, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answer_has_items" ("updated_at", "item_id", "answer_id", "id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 2, 2, 2, '2007-12-25 17:28:47.252993') Fixture Delete (0.2ms) DELETE FROM "answers" Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 1, 1, '2007-12-25 17:28:47.252993') Fixture Insert (0.0ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 2, 2, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 1, 3, 3, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 4, 4, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 5, 5, '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "answers" ("updated_at", "body", "question_id", "id", "user_id", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 6, 1, '2007-12-25 17:28:47.252993') Fixture Delete (0.1ms) DELETE FROM "questions" Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'Yahoo', 1, 1, 't', '2007-12-25 17:28:47.252993') Fixture Insert (0.0ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 2, 2, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.0ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 3, 3, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.0ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 4, 4, 'f', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:48.252993', 'test', 5, 5, 't', '2007-12-25 17:28:47.252993') Fixture Insert (0.1ms) INSERT INTO "questions" ("updated_at", "body", "id", "user_id", "shared", "created_at") VALUES ('2007-12-25 17:28:47.252993', 'test', 6, 1, 'f', '2007-12-25 17:28:47.252993') Fixture Delete (17.3ms) DELETE FROM "roles" Fixture Insert (0.1ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Guest', 'Guest', 1, NULL, '2012-01-24 23:26:08', '2012-01-24 23:26:08') Fixture Insert (0.0ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('User', 'User', 2, NULL, '2012-01-24 23:26:08', '2012-01-24 23:26:08') Fixture Insert (0.0ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Librarian', 'Librarian', 3, NULL, '2012-01-24 23:26:08', '2012-01-24 23:26:08') Fixture Insert (0.0ms) INSERT INTO "roles" ("name", "display_name", "id", "note", "created_at", "updated_at") VALUES ('Administrator', 'Administrator', 4, NULL, '2012-01-24 23:26:08', '2012-01-24 23:26:08') Fixture Delete (0.3ms) DELETE FROM "user_groups" Fixture Insert (0.0ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('(not specified)', '(not specified)', '2007-12-13 12:00:51.564542', 1, '', '2007-12-13 12:00:01.674976', 1) Fixture Insert (0.0ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('User', 'User', '2007-12-22 18:14:56.836548', 2, '', '2007-12-22 18:14:40.173954', 2) Fixture Insert (0.0ms) INSERT INTO "user_groups" ("name", "display_name", "updated_at", "id", "note", "created_at", "position") VALUES ('Faculty', 'Faculty', '2007-12-22 18:15:05.134351', 3, '', '2007-12-22 18:15:05.126457', 3) Fixture Delete (0.1ms) DELETE FROM "user_has_roles" Fixture Insert (0.0ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (1, 4, '2012-01-24 23:26:08', '2012-01-24 23:26:08', 135138680) Fixture Insert (0.0ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (2, 3, '2012-01-24 23:26:08', '2012-01-24 23:26:08', 344583537) Fixture Insert (0.0ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (3, 2, '2012-01-24 23:26:08', '2012-01-24 23:26:08', 206669143) Fixture Insert (0.0ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (4, 3, '2012-01-24 23:26:08', '2012-01-24 23:26:08', 226540757) Fixture Insert (0.0ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (5, 2, '2012-01-24 23:26:08', '2012-01-24 23:26:08', 358143215) Fixture Insert (0.0ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (6, 2, '2012-01-24 23:26:08', '2012-01-24 23:26:08', 576709754) Fixture Insert (0.0ms) INSERT INTO "user_has_roles" ("user_id", "role_id", "created_at", "updated_at", "id") VALUES (7, 2, '2012-01-24 23:26:08', '2012-01-24 23:26:08', 1010528733) Fixture Delete (0.9ms) DELETE FROM "users" Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:16:30.163731', '$2a$10$vHohD1WflnTIqAa8zMkF9evwAgIZRw3XuR4d3bi29M.jph/MB/AJi', 2, 1, NULL, 'admin', 'tanabe@kamata.lib.teu.ac.jp', '2007-11-19 07:58:32.111941', 4) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 03:41:16.337474', '$2a$10$9O2VuTccN4gHq36ARg0QReSrb1D7WrBBhZZ759RM9moHbB0W5zCzS', 1, 2, NULL, 'librarian1', 'librarian1@kamata.lib.teu.ac.jp', '2007-11-19 07:58:33.172441', 1) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', '$2a$10$JthS59A0BNkDOoFpCXM0V.GhhffKaoWKbzpPahYp/vTFrOyM7h/uW', 1, 3, NULL, 'user1', 'user1@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "created_at", "required_role_id") VALUES ('2008-05-31 03:42:23.340575', '$2a$10$YmmTGrYQ1Ir6oc7wXnp.GuNeO1eYLoP3sv8wMSIrTdaGw2BPwRrpS', 1, 4, NULL, 'librarian2', '2008-01-18 03:24:04.222344', 1) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "created_at", "required_role_id") VALUES ('2008-05-31 03:42:44.711117', '$2a$10$i7UjJhLVrJM/J7qaTwW39OXw1NiwowUEbtNHVDV0sqMLjX9.UO9ca', 1, 5, NULL, 'user2', '2008-01-18 04:29:06.922728', 2) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', 'cc53de0c2d9a1a228daa9a673ec824473747e17507a6c3c4f7e5eff8821f531d4b9e23616b3ddc66fe17006b2298a556fbd567ac080e87f00f37eef8cee6c417', 1, 6, NULL, 'user3', 'user3@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3) Fixture Insert (0.1ms) INSERT INTO "users" ("updated_at", "encrypted_password", "user_group_id", "id", "note", "username", "email", "created_at", "required_role_id") VALUES ('2008-05-31 04:02:25.101261', 'cc53de0c2d9a1a228daa9a673ec824473747e17507a6c3c4f7e5eff8821f531d4b9e23616b3ddc66fe17006b2298a556fbd567ac080e87f00f37eef8cee6c417', 1, 7, NULL, 'user4', 'user4@kamata.lib.teu.ac.jp', '2007-11-19 07:58:34.637413', 3)  (3.5ms) commit transaction  (0.0ms) begin transaction User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by AnswersController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers"  Rendered /Users/kosuke/enju_question/app/views/answers/index.html.erb within layouts/application (4.6ms) Completed 200 OK in 142ms (Views: 80.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "answers"  (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by AnswersController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers" Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.2ms | Solr: 0.0ms)  (0.0ms) SELECT COUNT(*) FROM "answers"   (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 403 Forbidden in 53ms (Views: 2.2ms | ActiveRecord: 0.2ms | Solr: 0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 403 Forbidden in 6ms (Views: 0.8ms | ActiveRecord: 0.2ms | Solr: 0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as HTML Parameters: {"user_id"=>"user1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3 Completed 200 OK in 20ms (Views: 0.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#index as HTML Parameters: {"user_id"=>"user2"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2' LIMIT 1 Completed 403 Forbidden in 7ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#index as RSS Parameters: {"user_id"=>"user1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3 Completed 200 OK in 40ms (Views: 30.6ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."user_id" = 3  (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by AnswersController#index as HTML Parameters: {"question_id"=>"2", "user_id"=>"librarian1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'librarian1' LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "2"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Completed 403 Forbidden in 23ms (Views: 0.8ms | ActiveRecord: 0.5ms | Solr: 0.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction Processing by AnswersController#index as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms (ActiveRecord: 0.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction Processing by AnswersController#index as HTML Parameters: {"question_id"=>"1"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 1 Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.2ms | Solr: 0.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction Processing by AnswersController#index as HTML Parameters: {"question_id"=>"5"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 5 Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.2ms | Solr: 0.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction Processing by AnswersController#index as RSS Parameters: {"question_id"=>"2"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "2"]] Completed 406 Not Acceptable in 5ms (ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction Processing by AnswersController#index as RSS Parameters: {"question_id"=>"5"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]]  (0.1ms) SELECT COUNT(*) FROM "answers" WHERE "answers"."question_id" = 5 Completed 200 OK in 36ms (Views: 0.7ms | ActiveRecord: 0.2ms | Solr: 0.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_1@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (68.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_1@example.jp"], ["encrypted_password", "$2a$04$iEzJ2jxGYhI/daMso/oEm.g0z.bDo2rJmTbwi6HN6fmHMgIOhkM/G"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["user_group_id", 1], ["username", "user_1"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_1"], ["created_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_2@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_2@example.jp"], ["encrypted_password", "$2a$04$VDwyK5axc9qBvoyQVFWdZOkN0ERnUoGsy0gemViQfHsXNAszzAPHK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["user_group_id", 1], ["username", "user_2"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.4ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_1"], ["created_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.2ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 42ms (Views: 32.2ms | ActiveRecord: 0.5ms | Solr: 0.0ms)  (59.0ms) rollback transaction  (0.1ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_3@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_3@example.jp"], ["encrypted_password", "$2a$04$zAry5OPUAHwAbkEzNZ2Ct.lhrY2cNASQcr.c4j6AKyeoU2NiQenrG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["user_group_id", 1], ["username", "user_3"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_2"], ["created_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_4@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_4@example.jp"], ["encrypted_password", "$2a$04$3lwpw71zhQmRieY0z/PelurECfMWYO2LTEX1e2e71UyUqkFid7dXK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["user_group_id", 1], ["username", "user_4"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.2ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_2"], ["created_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:08 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (95.5ms) rollback transaction  (0.1ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_5@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_5@example.jp"], ["encrypted_password", "$2a$04$Swx3NkqLjrgpo/f4tNu4suC/hf3P1d7JReATEBj9510xnXprCWSES"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_5"]] SQL (0.4ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_3"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_6@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_6@example.jp"], ["encrypted_password", "$2a$04$eimOojG9dkTrCvYxrbLC6.N6C0XYoAzA3EuA2EbWPOOSGLA58e1cG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_6"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.2ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_3"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms) Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]]  (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]]  (0.1ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]]  (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "id"=>"4"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 4 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 13ms (Views: 1.0ms | ActiveRecord: 0.5ms | Solr: 0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"missing"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 46ms (Views: 41.9ms | ActiveRecord: 0.1ms | Solr: 0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#show as HTML Parameters: {"user_id"=>"user2", "question_id"=>"2", "id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 9ms (Views: 0.7ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#show as HTML Parameters: {"question_id"=>"2", "id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Completed 403 Forbidden in 9ms (Views: 0.8ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_7@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_7@example.jp"], ["encrypted_password", "$2a$04$Vi5uyg7/n6uQmWDIUXfJDezud.iv2l0AH.iOfFxp0Ymv7vCQ5kZi."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_7"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.4ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_4"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_8@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_8@example.jp"], ["encrypted_password", "$2a$04$2rFFXQeAMZ4JO.ja6/L7iuXbld20sTKXopoUbnk1p7NFFyeKQ2LpC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_8"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.2ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_4"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#show as HTML Parameters: {"id"=>"7"} Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.1ms | Solr: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms) Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]]  (0.0ms) rollback transaction  (0.0ms) begin transaction Processing by AnswersController#show as HTML Parameters: {"question_id"=>"1", "id"=>"4"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 2 ORDER BY id DESC LIMIT 1 Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms (ActiveRecord: 0.2ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 4]]  (0.1ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by AnswersController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 7ms (ActiveRecord: 0.2ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 7ms (ActiveRecord: 0.2ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 7ms (ActiveRecord: 0.3ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#new as HTML Parameters: {"question_id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 11ms (Views: 2.8ms | ActiveRecord: 0.4ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction Processing by AnswersController#new as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms (ActiveRecord: 0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_9@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_9@example.jp"], ["encrypted_password", "$2a$04$VJoevCkfv6KKM75oHoIKIu4RaCOSBdDv/HP8Q5pN79n0GAEsSeyKO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_9"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.4ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_5"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_10@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_10@example.jp"], ["encrypted_password", "$2a$04$Go2tw3eUsL1QnKyE7AZT2eI6BxA6mwPpL0lbm/e5XUkepYqSk5l.."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_10"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.2ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_5"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 10ms (Views: 2.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_11@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_11@example.jp"], ["encrypted_password", "$2a$04$WVUrzcxMjPSM71USsu4MhOUcKNSHm530Qwa369EHnuBGaHU4ceHwO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_11"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_6"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_12@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_12@example.jp"], ["encrypted_password", "$2a$04$9XsRBl6uSVi.E/k1cOfTgObfFihDEAuuhrhdUo77Jubi1VbD0rrmi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_12"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.2ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_6"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Completed 403 Forbidden in 9ms (Views: 0.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_13@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_13@example.jp"], ["encrypted_password", "$2a$04$5DSJESRh51ZNN7JaF1LHL.fS.uI9Fma4Tzsh1iNqBS7NNSxbt0IN6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_13"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_7"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_14@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_14@example.jp"], ["encrypted_password", "$2a$04$Ds1Vh5YWdLFhamFXc2wg0uQuNlGP9wXxc2Z7dah5hksrSpnqlONxq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_14"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.2ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_7"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Completed 403 Forbidden in 9ms (Views: 0.8ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"question_id"=>"1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.6ms | Solr: 0.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"question_id"=>"1", "id"=>"4"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "4"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 4 LIMIT 1 Completed 403 Forbidden in 8ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"100"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "100"]] Completed 404 Not Found in 5ms (Views: 0.9ms | ActiveRecord: 0.1ms | Solr: 0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user1", "question_id"=>"1", "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#edit as HTML Parameters: {"user_id"=>"user2", "question_id"=>"2", "id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 9ms (Views: 0.8ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_15@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_15@example.jp"], ["encrypted_password", "$2a$04$C.z1O3SDoMaebenkJKeprevj3bgqsPq1SAol0oFU8wBirbrprxdse"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_15"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_8"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_16@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_16@example.jp"], ["encrypted_password", "$2a$04$Jy4fAu1/z2VWm67nabtcWeo5rkMcsyg/ye5bN6WyaI3d1mJNE79Zi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_16"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.3ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "answer_8"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 7], ["shared", true], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["url_list", nil], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#edit as HTML Parameters: {"id"=>"7"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms (ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_17@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_17@example.jp"], ["encrypted_password", "$2a$04$lBWUSzbT84xae1foImF6guLCRtjfWtrIMepzoxQhJPJ3Ffzmd.Jka"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_17"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.4ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_9"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_18@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_18@example.jp"], ["encrypted_password", "$2a$04$gsNpraLoJXxXBTBcdr8LRezvbUxeeT/CHG7ByP4.pPEU7zNri/KEu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_18"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"question_id"=>"1", "body"=>"hoge"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "hoge"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 1], ["shared", true], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["url_list", nil], ["user_id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/7 Completed 302 Found in 15ms (ActiveRecord: 0.8ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_19@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_19@example.jp"], ["encrypted_password", "$2a$04$E0EHUzBOuUcNlKjAkr9PYenUFAo1E25exYVKlrGbfmeENwAXNdQYi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_19"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.4ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_10"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_20@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_20@example.jp"], ["encrypted_password", "$2a$04$oJ/5aXzIwAMscvBsVlRQaO/PWsCDzSiAxS5hD0WkSNo.GhGBmwKKi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_20"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"hoge"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Redirected to http://test.host/questions Completed 302 Found in 8ms (ActiveRecord: 0.2ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.6ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_21@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_21@example.jp"], ["encrypted_password", "$2a$04$jkRo8by7iZm6ACVF/pAS5..jTGPWtPiAL4f/H4tulovCp3ST6ZImm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_21"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_11"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_22@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_22@example.jp"], ["encrypted_password", "$2a$04$J5BAhdHoOc6VMqs7rxzvxeSqKguxzZS2MjjlHAJZ1HPMEXQj8vCSW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_22"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#create as HTML Parameters: {"answer"=>{"question_id"=>"1", "body"=>"hoge"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "answers" ("body", "created_at", "deleted_at", "item_identifier_list", "question_id", "shared", "state", "updated_at", "url_list", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "hoge"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["item_identifier_list", nil], ["question_id", 1], ["shared", true], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["url_list", nil], ["user_id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/7 Completed 302 Found in 15ms (ActiveRecord: 0.8ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_23@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_23@example.jp"], ["encrypted_password", "$2a$04$rSXDqpdgSL7ozYAvv22Q4./jFqL4NGCLc2BKw8lsF2sGvnnC8RAfe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_23"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_12"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_24@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_24@example.jp"], ["encrypted_password", "$2a$04$EN/rYVyhQYELWkvH9k4Yj.wgNBS5QJF1.7GDN/OPEQMR.ItW7sRKu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_24"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"answer_12", "question_id"=>"7", "user_id"=>"9"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms (ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 7 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.6ms) rollback transaction  (0.0ms) begin transaction Role Load (26.5ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_25@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_25@example.jp"], ["encrypted_password", "$2a$04$YPVN9Qf5mztV38w2BZKFGOw39otA3T9l8wvM9y1pS05zK1Q4GIK/q"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_25"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_13"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_26@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_26@example.jp"], ["encrypted_password", "$2a$04$UgtG4FjaW4WRB38E/Ao6qOOEGycKszI6T7LOiCVTQJyE814Hz19f6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_26"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>"answer_13", "question_id"=>"7", "user_id"=>"9"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 11ms (ActiveRecord: 0.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_27@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_27@example.jp"], ["encrypted_password", "$2a$04$isC179HLVHRoc6MjtUSDvOUNcKg2nRUE7BSolh5IfkCQ4cMY25Ygq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_27"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_14"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_28@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_28@example.jp"], ["encrypted_password", "$2a$04$9cNyLXHR5LzqmZBhSFzrfu/aYqb8phhjrYzJRlCjLGV80XIaJehPK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_28"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms (ActiveRecord: 0.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_29@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_29@example.jp"], ["encrypted_password", "$2a$04$alEhTqiV31MoMpr9q4iPi.i210bLiX5qaIZOjZEvZdcB680oX2bNu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_29"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_15"], ["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_30@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_30@example.jp"], ["encrypted_password", "$2a$04$UMRPneNiE.QIfwq7LyfakejTox3U8QEdneRAoG/st7RbihCB.BK8S"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_group_id", 1], ["username", "user_30"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:09 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by AnswersController#create as HTML Parameters: {"answer"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms (ActiveRecord: 0.0ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 19ms (ActiveRecord: 1.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 46ms (ActiveRecord: 0.8ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]]  (0.0ms) rollback transaction  (0.0ms) begin transaction Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 0.9ms | ActiveRecord: 0.6ms | Solr: 0.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 13ms (ActiveRecord: 0.8ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 15ms (ActiveRecord: 0.8ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 14ms (ActiveRecord: 0.7ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]]  (0.0ms) rollback transaction  (0.0ms) begin transaction Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 14ms (ActiveRecord: 0.8ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "id"=>"missing"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 6ms (Views: 0.8ms | ActiveRecord: 0.1ms | Solr: 0.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user2", "id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 9ms (Views: 0.8ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{}, "user_id"=>"user1", "question_id"=>"1", "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "1"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 15ms (ActiveRecord: 0.9ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 15ms (ActiveRecord: 0.8ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Item Load (0.1ms) SELECT "items".* FROM "items" INNER JOIN "answer_has_items" ON "items"."id" = "answer_has_items"."item_id" WHERE "answer_has_items"."answer_id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/answers/3 Completed 302 Found in 14ms (ActiveRecord: 0.8ms) Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]]  (0.0ms) rollback transaction  (0.0ms) begin transaction Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Answer Load (0.0ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 3]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>""}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.6ms | Solr: 0.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms (ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", 1]] Processing by AnswersController#update as HTML Parameters: {"answer"=>{"body"=>"test"}, "id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 6ms (ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#destroy as HTML Parameters: {"id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 AnswerHasItem Load (0.1ms) SELECT "answer_has_items".* FROM "answer_has_items" WHERE "answer_has_items"."answer_id" = 3 SQL (0.3ms) DELETE FROM "answers" WHERE "answers"."id" = ? [["id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = 1 ORDER BY id DESC LIMIT 1 Redirected to http://test.host/questions/1/answers Completed 302 Found in 11ms (ActiveRecord: 0.9ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by AnswersController#destroy as HTML Parameters: {"id"=>"5"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 13ms (Views: 1.3ms | ActiveRecord: 0.5ms | Solr: 0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction Processing by AnswersController#destroy as HTML Parameters: {"id"=>"1"} Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms (ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.2ms) begin transaction User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 SOLR Request (47.8ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (29.1ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.4ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (5, 1, 2, 3, 4, 6) ORDER BY id DESC Completed 200 OK in 211ms (Views: 34.8ms | ActiveRecord: 0.7ms | Solr: 76.9ms)  (0.1ms) rollback transaction  (0.1ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 SOLR Request (3.2ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (2.9ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.3ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (5, 1, 2, 3, 4, 6) ORDER BY id DESC Completed 200 OK in 23ms (Views: 1.0ms | ActiveRecord: 0.5ms | Solr: 6.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#index as RSS User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 SOLR Request (2.8ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (2.5ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.3ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (5, 1, 2, 3, 4, 6) ORDER BY id DESC Completed 200 OK in 121ms (Views: 96.0ms | ActiveRecord: 0.5ms | Solr: 5.4ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 SOLR Request (3.2ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (2.9ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (5, 1) ORDER BY id DESC Completed 200 OK in 23ms (Views: 1.0ms | ActiveRecord: 0.5ms | Solr: 6.2ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#index as RSS User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 SOLR Request (39.1ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (3.0ms) [ path=# parameters={data: fq=type%3AQuestion&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (5, 1) ORDER BY id DESC Completed 200 OK in 112ms (Views: 0.6ms | ActiveRecord: 0.5ms | Solr: 42.1ms) Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."shared" = 't' ORDER BY id DESC, updated_at LIMIT 10 OFFSET 0  (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#index as RSS Parameters: {"user_id"=>"user1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1' LIMIT 1 SOLR Request (15.9ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser1&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (2.6ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser1&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (3) ORDER BY id DESC Completed 200 OK in 33ms (Views: 0.6ms | ActiveRecord: 0.6ms | Solr: 18.5ms) Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."user_id" = 3 ORDER BY id DESC  (0.0ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by QuestionsController#index as HTML Parameters: {"user_id"=>"user2"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2' LIMIT 1 SOLR Request (3.1ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (2.9ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (5) ORDER BY id DESC Completed 200 OK in 30ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 6.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]] Processing by QuestionsController#index as RSS Parameters: {"user_id"=>"user2"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2' LIMIT 1 SOLR Request (3.3ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (3.2ms) [ path=# parameters={data: fq=type%3AQuestion&fq=username_s%3Auser2&fq=shared_b%3Atrue&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (5) ORDER BY id DESC Completed 200 OK in 20ms (Views: 0.6ms | ActiveRecord: 0.5ms | Solr: 6.5ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction Processing by QuestionsController#index as HTML SOLR Request (15.8ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (3.2ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b&q=%2A%3A%2A, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.3ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (5, 1, 2, 3, 4, 6) ORDER BY id DESC Completed 200 OK in 43ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 19.0ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction Processing by QuestionsController#index as HTML Parameters: {"query"=>"Yahoo"} SOLR Request (37.8ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (4.1ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (1) ORDER BY id DESC Completed 200 OK in 96ms (Views: 0.9ms | ActiveRecord: 0.2ms | Solr: 41.9ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction Processing by QuestionsController#index as XML Parameters: {"query"=>"Yahoo", "mode"=>"crd"} SOLR Request (3.3ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=30&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] SOLR Request (2.8ms) [ path=# parameters={data: fq=type%3AQuestion&sort=updated_at_d+desc&q=Yahoo&fl=%2A+score&qf=body_text+answer_body_text&defType=dismax&start=0&rows=10&facet=true&f.solved_b.facet.mincount=1&facet.field=solved_b, method: post, params: {:wt=>:ruby}, query: wt=ruby, headers: {"Content-Type"=>"application/x-www-form-urlencoded"}, path: select, uri: http://localhost:8981/solr/select?wt=ruby} ] Question Load (0.2ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (1) ORDER BY id DESC Completed 200 OK in 67ms (Views: 37.8ms | ActiveRecord: 0.2ms | Solr: 6.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_31@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_31@example.jp"], ["encrypted_password", "$2a$04$oYe7Dm.k3KsN5Zxl8f5YlOwkYGKhKbV7uMbgKUjAYPMJkMibgGSJO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:12 UTC +00:00], ["user_group_id", 1], ["username", "user_31"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:12 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:12 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_16"], ["created_at", Tue, 24 Jan 2012 23:26:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:12 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 30ms (Views: 17.7ms | ActiveRecord: 0.3ms | Solr: 0.0ms)  (3.9ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_32@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_32@example.jp"], ["encrypted_password", "$2a$04$Xs8s4GWO9lcNEFyESJjnPe5JdkB33ZDoUx7SaSV8ZpHQ.xXZ5COse"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:12 UTC +00:00], ["user_group_id", 1], ["username", "user_32"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:12 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:12 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_17"], ["created_at", Tue, 24 Jan 2012 23:26:12 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:12 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_33@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_33@example.jp"], ["encrypted_password", "$2a$04$obfDhgp3Onp9ok27cmswR.0IWkBuTNNE54rTGhZSUAuIrmeHenEfy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_33"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_18"], ["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_34@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_34@example.jp"], ["encrypted_password", "$2a$04$JRmTU4PZ1gCVMiU0cpPRH.YiDSDGuAZcvOSUBnjy6SRDWQ9u.Rx.q"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_34"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_19"], ["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 200 OK in 14ms (Views: 1.1ms | ActiveRecord: 0.5ms | Solr: 0.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_35@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_35@example.jp"], ["encrypted_password", "$2a$04$twq5i4W9nH97kwtzC9xPk.H6QiCSWXuc.EU5XDkDTb6xnH3El1qRO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_35"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_20"], ["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"missing"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 8ms (Views: 0.9ms | ActiveRecord: 0.2ms | Solr: 0.0ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_36@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_36@example.jp"], ["encrypted_password", "$2a$04$zDITKPwPAq3ttOplc.oehubZv8GB3.ej7BuNenzBOXlxVL359WVle"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_36"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_21"], ["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 14ms (Views: 1.1ms | ActiveRecord: 0.6ms | Solr: 0.0ms) Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 3]]  (0.6ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_37@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_37@example.jp"], ["encrypted_password", "$2a$04$PgJlRh34X2zCsZtL.TK3/.r.l4aI329XEtJFmUJdIkl4jkFdcyCUa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_37"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_22"], ["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#show as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 200 OK in 10ms (Views: 1.3ms | ActiveRecord: 0.4ms | Solr: 0.0ms) Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 5]]  (0.8ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_38@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_38@example.jp"], ["encrypted_password", "$2a$04$OVrTEqR.b2DN5Z7GEjB3EOZ3pxNDMbHDhRoZ3P/IGSb6tbYapKoHK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_38"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_23"], ["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#show as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Completed 200 OK in 9ms (Views: 1.4ms | ActiveRecord: 0.1ms | Solr: 0.0ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_39@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_39@example.jp"], ["encrypted_password", "$2a$04$pYka1CjtaOM9KY58UR3KLeQqvqG3gYLjuSgjsC10SSPlCf8vwBOM."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_39"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.9ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_24"], ["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#show as XML Parameters: {"mode"=>"crd", "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Completed 200 OK in 12ms (Views: 4.1ms | ActiveRecord: 0.1ms | Solr: 0.0ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 13ms (Views: 3.5ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.1ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1  (0.1ms) rollback transaction  (0.0ms) begin transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 Completed 200 OK in 61ms (Views: 1.2ms | ActiveRecord: 0.3ms | Solr: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.1ms) rollback transaction  (0.0ms) begin transaction Processing by QuestionsController#new as HTML Redirected to http://test.host/users/sign_in Completed 302 Found in 12ms (ActiveRecord: 0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_40@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_40@example.jp"], ["encrypted_password", "$2a$04$LMduTtxjVIQrNuTIjY8DaODwFKTH/CMB9HfgK2veTpndpYe2KePb2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_40"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_25"], ["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1 Completed 200 OK in 18ms (Views: 4.5ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_41@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_41@example.jp"], ["encrypted_password", "$2a$04$8K5ZTAsf0u/eypdoT60oSefhENcjUR8bsVBLRQkTp/FlV0wCres.a"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_41"]] SQL (0.4ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_26"], ["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1 Completed 200 OK in 16ms (Views: 1.5ms | ActiveRecord: 2.0ms | Solr: 0.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_42@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_42@example.jp"], ["encrypted_password", "$2a$04$4P5qIKWCe41370W4Abs2E.yIDXb1gHmqVwDw9boj7SeNSYd9Upfw6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_42"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_27"], ["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 18ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms)  (3.3ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_43@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (26.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_43@example.jp"], ["encrypted_password", "$2a$04$.cR98tDHcG5FaTcy36UGsuIwGp1ITE4d3t3SOK3ZBFVGrvhbW/CfW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_43"]] SQL (1.9ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (13.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_28"], ["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"5"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 15ms (Views: 1.2ms | ActiveRecord: 0.7ms | Solr: 0.0ms)  (69.4ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_44@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.1ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_44@example.jp"], ["encrypted_password", "$2a$04$x1ncqgfva4D5/.RiS8GTl.9vrSqOAZrZBPRt6hj7sNSUfd1qYjAiy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_44"]] SQL (5.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_29"], ["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 10ms (Views: 1.2ms | ActiveRecord: 0.3ms | Solr: 0.0ms)  (40.3ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_45@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_45@example.jp"], ["encrypted_password", "$2a$04$DWO1bcbYbwgacomLgtal..1BMuEcKumELYOVxV/qWrKLHuZ7WTRLS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_45"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_30"], ["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#edit as HTML Parameters: {"id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Completed 200 OK in 17ms (Views: 1.4ms | ActiveRecord: 0.6ms | Solr: 0.0ms)  (1.1ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (4.6ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_46@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_46@example.jp"], ["encrypted_password", "$2a$04$uaHjIhTLRJy.pcoGJD1qqe6N3H.6bdK49/j3YLuubVyb83hEjbKri"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_46"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_31"], ["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#edit as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 12ms (ActiveRecord: 0.1ms)  (2.1ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_47@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_47@example.jp"], ["encrypted_password", "$2a$04$7heGlwQIwD4/B.JXMaSqe.1MKS/O4exdl0M4dhdTQ9m0Sz0rJd4ES"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_47"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_32", "user_id"=>"8"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_32"], ["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 18ms (ActiveRecord: 1.4ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_48@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_48@example.jp"], ["encrypted_password", "$2a$04$cB1yTFsB8BkDlSYONF7BAO92AZFp8N3DEW7bRlLQSyt.1pw9jHhoq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_48"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_33", "user_id"=>"8"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.4ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_33"], ["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 22ms (ActiveRecord: 2.0ms)  (16.6ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_49@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.8ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_49@example.jp"], ["encrypted_password", "$2a$04$6ebps7UgkpGcpDkAgvhMW.yyX.9Z7ZOkJjV1vF0TgblsfhhA9.rx6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_49"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 22ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.8ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_50@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_50@example.jp"], ["encrypted_password", "$2a$04$LVY/hnKNcezBwdu30qvoC.sndTExsS8/dMy3GpmVyLGwAKvO1gxhy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_group_id", 1], ["username", "user_50"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:13 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 18ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms)  (17.4ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_51@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_51@example.jp"], ["encrypted_password", "$2a$04$cxhl28uTifThFzuMy.iPCeWUmC1aj3ZvQezxgaVac9qDff2OP5s5y"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_51"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_36", "user_id"=>"8"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_36"], ["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 17ms (ActiveRecord: 1.3ms)  (14.3ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.3ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_52@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_52@example.jp"], ["encrypted_password", "$2a$04$2Ib2luuJw..6mVVg3O45NOfAkJ89J0jxDl1DpP6E4OcCppyIucpzC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_52"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_37", "user_id"=>"8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_37"], ["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 18ms (ActiveRecord: 1.3ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_53@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_53@example.jp"], ["encrypted_password", "$2a$04$BZ3vHy7fjpH2QsDhqkmpz.EoyHFTkY69Ckp67vQBuBippHiU0qjnG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_53"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 22ms (Views: 2.4ms | ActiveRecord: 0.6ms | Solr: 0.0ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_54@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_54@example.jp"], ["encrypted_password", "$2a$04$/P5TlqyAyED8H2xgVbb8yOkOM0P7OxnSIlNWnZJUwvtlgEkIuNsoy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_54"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 17ms (Views: 1.3ms | ActiveRecord: 0.8ms | Solr: 0.0ms)  (16.1ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_55@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_55@example.jp"], ["encrypted_password", "$2a$04$RTf17XDX8v.rxjjPXxywMe0fiTZRW17rsb.eM9BIOvAtU/lpiMun."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_55"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_40", "user_id"=>"8"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (9.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_40"], ["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 40ms (ActiveRecord: 10.5ms)  (13.3ms) rollback transaction  (0.1ms) begin transaction Role Load (47.3ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_56@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (10.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_56@example.jp"], ["encrypted_password", "$2a$04$Z4ee9EmjKcnYWhm2BIdnoOMhU3KYGKKPIRTva8Fw131NucW4SsPbO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_56"]] SQL (7.6ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_41", "user_id"=>"8"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (10.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_41"], ["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 31ms (ActiveRecord: 11.3ms)  (17.1ms) rollback transaction  (0.1ms) begin transaction Role Load (55.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_57@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (8.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_57@example.jp"], ["encrypted_password", "$2a$04$zvOe4t1CA/SMkoBWuVTKF.ePNYSTowBL6KvKLYArGOw1xdFnF52ZO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_57"]] SQL (4.9ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 21ms (Views: 1.3ms | ActiveRecord: 0.6ms | Solr: 0.0ms)  (1.5ms) rollback transaction  (0.1ms) begin transaction Role Load (0.3ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_58@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_58@example.jp"], ["encrypted_password", "$2a$04$jkbqGcT1oixBgo.Ls/0Zmuq.KQYk/oFzqOmJL1SJZpQi80scIQW1m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_58"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 20ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_59@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_59@example.jp"], ["encrypted_password", "$2a$04$5o5a/ZXlEqiIfCfiyx3Ey.hAGhQICn4dsLNZzQrGbacsYY8HGtahW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_59"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_44", "user_id"=>"8"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 11ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.9ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.2ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_60@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_60@example.jp"], ["encrypted_password", "$2a$04$gOs56hUNDzg934d/6/l4oeOhDq/YktjJDSimMVZLIcTrmwhizhA9u"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_60"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>"question_45", "user_id"=>"8"}} Redirected to http://test.host/users/sign_in Completed 302 Found in 11ms (ActiveRecord: 0.0ms)  (3.9ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_61@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_61@example.jp"], ["encrypted_password", "$2a$04$3.izRuNEKTNmtmVb4hDEsew6CVO8L0uRL6eVuSqWBMTg9WvHn3pOe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_61"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 12ms (ActiveRecord: 0.0ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_62@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_62@example.jp"], ["encrypted_password", "$2a$04$MW8/QigldXZuksJXgCHV0OmviSk8LZYXNcXA.A7m/OONvWwG/zqsi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_62"]] SQL (0.5ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#create as HTML Parameters: {"question"=>{"body"=>""}} Redirected to http://test.host/users/sign_in Completed 302 Found in 11ms (ActiveRecord: 0.0ms)  (2.0ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_63@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_63@example.jp"], ["encrypted_password", "$2a$04$S546LQ6zuHFNuzwV.lsyfeAKATSUo.nADz9t8Zh3pCpmDf5MGfu0O"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_63"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.8ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_48"], ["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_64@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_64@example.jp"], ["encrypted_password", "$2a$04$6JeEL4V5PbQA50enFBfDROlHYF.gE8hA1wy1dCuItiyn8KK8uqIJS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_64"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 16ms (Views: 1.2ms | ActiveRecord: 0.6ms | Solr: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_65@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_65@example.jp"], ["encrypted_password", "$2a$04$XzjhqKMLx3Ynfu7vFdx.Au1Udu6ZBojMQ6TEjjBrXimb8Wmmnugc2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_65"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (2.0ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_50"], ["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_66@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_66@example.jp"], ["encrypted_password", "$2a$04$GrDkhV.C3t6FIPiy3i17D.yotPsOGHw2ZLGb2W/O5MOXw.sCaQkeW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_66"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{}, "id"=>"missing"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 10ms (Views: 1.3ms | ActiveRecord: 0.2ms | Solr: 0.0ms)  (2.6ms) rollback transaction  (0.2ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.4ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_67@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_67@example.jp"], ["encrypted_password", "$2a$04$UtgKXJ7iAHPGGdBYVDxpCO.sodztaETfkBstDnM6.dKo7Tj3BusG."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_67"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_52"], ["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_68@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_68@example.jp"], ["encrypted_password", "$2a$04$AYKSsJsYJz6VUzi1vsNFF.agaNAKJhCZxXQOit1o.5sXfkVlRYen2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_68"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_53", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.2ms) UPDATE "questions" SET "body" = 'question_53', "user_id" = 9, "updated_at" = '2012-01-24 23:26:14.870091' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 17ms (ActiveRecord: 0.8ms)  (2.0ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_69@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_69@example.jp"], ["encrypted_password", "$2a$04$iwneBVzN0jNWtG2EHw5uVeMzhC3FQKeT1tiPE7iy2ag2LmCf3bIKO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_69"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_54"], ["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_70@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_70@example.jp"], ["encrypted_password", "$2a$04$m32Ze3HATV0LD5J6FNY8f.GcgUESSmcogQDawJ85suCSL59T5YNve"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_70"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_55", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_55', "user_id" = 9, "updated_at" = '2012-01-24 23:26:14.929364' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 18ms (ActiveRecord: 0.8ms)  (5.6ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_71@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_71@example.jp"], ["encrypted_password", "$2a$04$MXoSCj81OTlr3hJWsQrDLuFFhhtkkwtMt72TDcjS6ecDAVOsqEfxO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_71"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_56"], ["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_72@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_72@example.jp"], ["encrypted_password", "$2a$04$3pmM8mdeVpNQQZqYOI49K.fvaRHin9Yad3ChU2BWNB6MyuhfuTgGC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_72"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 18ms (Views: 1.2ms | ActiveRecord: 0.7ms | Solr: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_73@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_73@example.jp"], ["encrypted_password", "$2a$04$a2xs48haKF/vr6ggP.kiT.tflvXR0tZCuil7B7a40IwS68IXc7djy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:14 UTC +00:00], ["user_group_id", 1], ["username", "user_73"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_58"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_74@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_74@example.jp"], ["encrypted_password", "$2a$04$ELDsc.naBoTRdcpR55A5QeVu4hB5/qZyovmP6cXZj1FRozmx16Q3C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_74"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 23ms (Views: 1.2ms | ActiveRecord: 1.0ms | Solr: 0.0ms)  (2.7ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_75@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.0ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_75@example.jp"], ["encrypted_password", "$2a$04$VO.DFWdJ4eETOQOKV2WB.OyVNfOOuEO2uvsiJDDQg5/g71yotNmbm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_75"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (1.4ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_60"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_76@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_76@example.jp"], ["encrypted_password", "$2a$04$1V672RHrpXJmXdn3MRO0CeYlGSV/qEBXDmBOOXrd5/Hzdf23l1s/C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_76"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_61", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_61', "user_id" = 9, "updated_at" = '2012-01-24 23:26:15.108772' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 24ms (ActiveRecord: 0.8ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction Role Load (0.3ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_77@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_77@example.jp"], ["encrypted_password", "$2a$04$UeWK.RoNMQFfwYnFlMHu9.pvwErUIXjbBOzGkudv6EQLXvtva72D."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_77"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_62"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_78@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_78@example.jp"], ["encrypted_password", "$2a$04$EWCnQFPXUEp7GIuTs59MKOxtAJ4BxZayAOb0oNzz8JRzoENpSUIwq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_78"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_63", "user_id"=>"9"}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 LIMIT 1  (0.1ms) UPDATE "questions" SET "body" = 'question_63', "user_id" = 9, "updated_at" = '2012-01-24 23:26:15.228760' WHERE "questions"."id" = 7  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/7 Completed 302 Found in 17ms (ActiveRecord: 0.8ms)  (3.7ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (1.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_79@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_79@example.jp"], ["encrypted_password", "$2a$04$ZM8EUBPSORfwDfJz2/bLDOzr2R7JRKrJstBrywknNdwGxjTfLO7hC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_79"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_64"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.4ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_80@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_80@example.jp"], ["encrypted_password", "$2a$04$kKkXFtcur/gyi4BYAPvoXeNhwHcHupFqc1h/YYxZ2n6v6QOteUt3e"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_80"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 16ms (Views: 1.1ms | ActiveRecord: 0.7ms | Solr: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.2ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_81@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_81@example.jp"], ["encrypted_password", "$2a$04$xrH3IYghCcVCDfy97.VYl.MvCqGbUJH9XABhNlkoQygjW80316CkS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_81"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_66"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_82@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_82@example.jp"], ["encrypted_password", "$2a$04$X6sURAAfs8/cNXtW00vy5eSh/CPysk0yBdEetnvqJhQw7Mu3gMV/G"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_82"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.5ms | Solr: 0.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_83@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_83@example.jp"], ["encrypted_password", "$2a$04$D.aXx16GaGcZ8bwvE9Nj5u.5P2p7/Yz7No.eXEfEQWmb0xJpnhS3W"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_83"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_68"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_84@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_84@example.jp"], ["encrypted_password", "$2a$04$q.CuMlIPkkQ72qGV1tn1KuhcjUs8obBBSy31.qjQci88CETUdB/Ae"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_84"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{}, "id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/questions/3 Completed 302 Found in 10ms (ActiveRecord: 0.4ms) Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 3]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_85@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_85@example.jp"], ["encrypted_password", "$2a$04$3hnDyS5Fy1sinwPekzG6kOFee8MLikUcmrBLiE7dg2XkSJVMewp.m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_85"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_70"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_86@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_86@example.jp"], ["encrypted_password", "$2a$04$mOUP4kPjvTOOvslhGs/ZOOQ5Xq8loh44GJCMu/c2FtlGJtTOhASGG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_86"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_71", "user_id"=>"9"}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 10ms (Views: 0.8ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_87@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_87@example.jp"], ["encrypted_password", "$2a$04$i8wj2Ta5Jaj8AQ27qV8bIOsoRj2/HDl1Vuz7nMc7yk0sve1lGcWdy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_87"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_72"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_88@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_88@example.jp"], ["encrypted_password", "$2a$04$VVUe6GIgheztE1D5QGdKuewQAzASC96cIEPVWDS8./HrZhSMVAbvq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_88"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_73", "user_id"=>"9"}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 11ms (Views: 0.8ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_89@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_89@example.jp"], ["encrypted_password", "$2a$04$Tz7VVbWrICJRU2zQgM43iO6ez6i/R5hYd/tS3kc4cKY/LKf/Nw23u"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_89"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_74"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_90@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_90@example.jp"], ["encrypted_password", "$2a$04$2JI4wVTCbaNcxpQEy1nRMenRMHZMnGghuffMj1HOTM3KoFOGyLd/C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_90"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 9ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_91@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_91@example.jp"], ["encrypted_password", "$2a$04$N2ASX9hqsJRRPLzFJ4jvu.fAHVAHWelGGyOsr636ocjTK5wElzuiG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_91"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_76"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_92@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_92@example.jp"], ["encrypted_password", "$2a$04$E0hFuo0BStvju3gyc/leN.iFgvCsbOlbOm0lHZioQ2rnxhY9Qz5E6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_92"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 9ms (Views: 0.8ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_93@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_93@example.jp"], ["encrypted_password", "$2a$04$KJ92GZvCAfYxrhmoj9ZjdOmJd5rjY.RKLfkqyevuMJHjD.iM.jmFO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_93"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_78"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_94@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_94@example.jp"], ["encrypted_password", "$2a$04$.hu98WkR27sn5o.eGdO18uplS1y4uFv19KkE0IrmUZVl.KLgY9ini"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_94"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_79", "user_id"=>"9"}, "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms (ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_95@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_95@example.jp"], ["encrypted_password", "$2a$04$JsQuUelhZwVyezWHazHcOuuw8PC.SP/cInw6kAQnwNcIWdTfR0rIK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_95"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.7ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_80"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_96@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.3ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_96@example.jp"], ["encrypted_password", "$2a$04$U6fJcx83cJEyYOk1ujFx3eoW6cZE7av9xqcVh.l6zu.0zGB.mHglS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_96"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 9]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>"question_81", "user_id"=>"9"}, "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms (ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_97@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_97@example.jp"], ["encrypted_password", "$2a$04$NvVJIxcrQbqjxGG76f4DsOdUYQshw973FuQzbqqHH8tMW6/3yHDfa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_97"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_82"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_98@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_98@example.jp"], ["encrypted_password", "$2a$04$Bw5al6FFVFuVqTbCbA9y..MrRirja8ArslSRgRG96brXFDyEBG0VG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_98"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 9]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#update as HTML Parameters: {"question"=>{"body"=>""}, "id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 8ms (ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_99@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_99@example.jp"], ["encrypted_password", "$2a$04$F6dnaCuCgchMnzRh7Te79em3d064itDnR.9XxSBoT4VuZlVdxKIXa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_99"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.4ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_84"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 23ms (ActiveRecord: 1.2ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_100@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_100@example.jp"], ["encrypted_password", "$2a$04$336Rpi7JeJHKqV8EK0VP2O6uxDhjYvQSpg0HOrFKUzp1Ajbo1eTZa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_100"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.6ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_85"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 1 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 11ms (ActiveRecord: 0.8ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_101@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_101@example.jp"], ["encrypted_password", "$2a$04$gikvyOdtctXIUVyicrD7quPwxlqzCCW3X63SEMlZ59h1dwi4fOAPO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_101"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_86"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"missing"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "missing"]] Completed 404 Not Found in 6ms (Views: 0.9ms | ActiveRecord: 0.1ms | Solr: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_102@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_102@example.jp"], ["encrypted_password", "$2a$04$YGA5Hww5Joa.doPw/6CUkOzVti1tfFe/Q4nRnoOGNvNGlETjwBJnm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_102"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.4ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_87"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 14ms (ActiveRecord: 0.9ms)  (0.9ms) rollback transaction  (0.1ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_103@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_103@example.jp"], ["encrypted_password", "$2a$04$u4IsB3a9yWV9L6v998siIuErRNJhQ9zgsbiW1fkEpRz5vhP/EKQsy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_103"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_88"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 2 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 7 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 7]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Redirected to http://test.host/users/8/questions Completed 302 Found in 10ms (ActiveRecord: 0.6ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_104@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_104@example.jp"], ["encrypted_password", "$2a$04$v7qWDs3g0aiQfwcKrQZazev85nazlDvgJ.c/H9.Qndxhav.6fJILm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_104"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_89"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 11ms (Views: 1.2ms | ActiveRecord: 0.4ms | Solr: 0.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_105@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_105@example.jp"], ["encrypted_password", "$2a$04$HUNRM0jkkBX7N/0GXKzExO1DKCSoHPFfakUibfLF6IdkLRRiYDJMa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_105"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_90"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 Completed 403 Forbidden in 10ms (Views: 1.0ms | ActiveRecord: 0.3ms | Solr: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_106@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_106@example.jp"], ["encrypted_password", "$2a$04$3IYBrrRYcVhBoVJ2DW9hkuRdPFuCohUEVmkVCuR86nUi/kLJ5lR4."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_106"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_91"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"3"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "3"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 3 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Question' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Question' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "questions" WHERE "questions"."id" = ? [["id", 3]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/users/3/questions Completed 302 Found in 11ms (ActiveRecord: 0.7ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_107@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_107@example.jp"], ["encrypted_password", "$2a$04$eQPRBgmXvU2/DI7I99BUWOWPUVEGAxT0xqQmJoxzPIQk8sD/6LKNS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_107"]] SQL (0.2ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_92"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"5"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Question Load (0.0ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "5"]] Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "user_has_roles" ON "roles"."id" = "user_has_roles"."role_id" WHERE "user_has_roles"."user_id" = 3 LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 LIMIT 1 Completed 403 Forbidden in 9ms (Views: 0.8ms | ActiveRecord: 0.3ms | Solr: 0.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_108@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_108@example.jp"], ["encrypted_password", "$2a$04$BHs07mY4mLYC5rdVZ8VSZOKhzpMjKcLw.0EexTV95cOMl1QULTmY."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_108"]] SQL (0.1ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_93"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 7ms (ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 UserGroup Load (0.1ms) SELECT "user_groups".* FROM "user_groups" LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'User' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user_109@example.jp' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "locale", "note", "remember_created_at", "required_role_id", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at", "user_group_id", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "user_109@example.jp"], ["encrypted_password", "$2a$04$mp.iy3C2GzJL4nkmPRBxSufIGzGIwLZcRxGkX1qZ9IKsYHzcWyxoa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["locale", nil], ["note", nil], ["remember_created_at", nil], ["required_role_id", 2], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_group_id", 1], ["username", "user_109"]] SQL (0.3ms) INSERT INTO "user_has_roles" ("created_at", "role_id", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["role_id", 2], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 8 LIMIT 1 SQL (0.5ms) INSERT INTO "questions" ("answers_count", "body", "created_at", "deleted_at", "note", "shared", "solved", "state", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["answers_count", 0], ["body", "question_94"], ["created_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["deleted_at", nil], ["note", nil], ["shared", true], ["solved", false], ["state", nil], ["updated_at", Tue, 24 Jan 2012 23:26:15 UTC +00:00], ["user_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by QuestionsController#destroy as HTML Parameters: {"id"=>"7"} Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", "7"]] Redirected to http://test.host/users/sign_in Completed 302 Found in 9ms (ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction Question Load (0.1ms) SELECT "questions".* FROM "questions" WHERE "questions"."id" = ? ORDER BY id DESC LIMIT 1 [["id", 1]] Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 1 ORDER BY id DESC LIMIT 1 Answer Load (0.1ms) SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = 1 ORDER BY id DESC LIMIT 1  (0.0ms) rollback transaction