Connecting to database specified by database.yml  (0.2ms) select sqlite_version(*)  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreatePosts (20121103000620)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "published_at" datetime, "author_id" integer, "category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121103000620')  (0.6ms) commit transaction Migrating to CreateUsers (20121103000625)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "username" varchar(255), "age" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121103000625')  (0.5ms) commit transaction Migrating to CreateCategories (20121103000635)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121103000635')  (0.6ms) commit transaction Migrating to CreateStores (20121103000639)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "stores" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121103000639')  (0.6ms) commit transaction Migrating to CreateTags (20121103000645)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "tags" ("id" varchar(255), "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121103000645')  (0.6ms) commit transaction Migrating to DeviseCreateAdminUsers (20121103000650)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("admin_users")  (0.6ms) CREATE UNIQUE INDEX "index_admin_users_on_email" ON "admin_users" ("email")  (0.1ms) PRAGMA index_list("admin_users")  (0.1ms) PRAGMA index_info('index_admin_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_admin_users_on_reset_password_token" ON "admin_users" ("reset_password_token") AdminUser Exists (0.2ms) SELECT 1 AS one FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.8ms) INSERT INTO "admin_users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 03 Nov 2012 00:07:19 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "admin@example.com"], ["encrypted_password", "$2a$04$oEz8bTa6Qbmdal6wyeIwKOByq1OlXEk6zUSD4X1qw7BG4us0EJl4q"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Sat, 03 Nov 2012 00:07:19 UTC +00:00]]  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121103000650')  (2.0ms) commit transaction Migrating to CreateAdminNotes (20121103000657)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "admin_notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "admin_user_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("admin_notes")  (0.2ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "admin_notes" ("resource_type", "resource_id")  (0.1ms) PRAGMA index_list("admin_notes")  (0.1ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.2ms) CREATE INDEX "index_admin_notes_on_admin_user_type_and_admin_user_id" ON "admin_notes" ("admin_user_type", "admin_user_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121103000657')  (0.7ms) commit transaction Migrating to MoveAdminNotesToComments (20121103000658)  (0.0ms) begin transaction  (0.1ms) PRAGMA index_list("admin_notes")  (0.0ms) PRAGMA index_info('index_admin_notes_on_admin_user_type_and_admin_user_id')  (0.1ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.4ms) DROP INDEX "index_admin_notes_on_admin_user_type_and_admin_user_id"  (0.2ms) ALTER TABLE "admin_notes" RENAME TO "active_admin_comments"  (0.6ms) CREATE TEMPORARY TABLE "altered_active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("altered_active_admin_comments")  (0.1ms) CREATE INDEX "temp_index_admin_notes_on_resource_type_and_resource_id" ON "altered_active_admin_comments" ("resource_type", "resource_id")  (0.1ms) SELECT * FROM "active_admin_comments"  (0.4ms) DROP TABLE "active_admin_comments"  (0.2ms) CREATE TABLE "active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("altered_active_admin_comments")  (0.0ms) PRAGMA index_info('temp_index_admin_notes_on_resource_type_and_resource_id')  (0.1ms) PRAGMA index_list("active_admin_comments")  (0.2ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")  (0.1ms) SELECT * FROM "altered_active_admin_comments"  (0.5ms) DROP TABLE "altered_active_admin_comments"  (0.2ms) CREATE TEMPORARY TABLE "altered_active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "author_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("altered_active_admin_comments")  (0.2ms) CREATE INDEX "temp_index_admin_notes_on_resource_type_and_resource_id" ON "altered_active_admin_comments" ("resource_type", "resource_id")  (0.1ms) SELECT * FROM "active_admin_comments"  (0.2ms) DROP TABLE "active_admin_comments"  (0.1ms) CREATE TABLE "active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "author_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("altered_active_admin_comments")  (0.0ms) PRAGMA index_info('temp_index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")  (0.1ms) SELECT * FROM "altered_active_admin_comments"  (0.1ms) DROP TABLE "altered_active_admin_comments"  (0.2ms) ALTER TABLE "active_admin_comments" ADD "namespace" varchar(255)  (0.1ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.1ms) CREATE INDEX "index_active_admin_comments_on_namespace" ON "active_admin_comments" ("namespace")  (0.1ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_namespace')  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.1ms) CREATE INDEX "index_active_admin_comments_on_author_type_and_author_id" ON "active_admin_comments" ("author_type", "author_id")  (0.1ms) UPDATE active_admin_comments SET namespace='admin'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121103000658')  (2.5ms) commit transaction  (0.4ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.1ms) PRAGMA index_info('index_active_admin_comments_on_author_type_and_author_id')  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_namespace')  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("admin_users")  (0.0ms) PRAGMA index_info('index_admin_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_admin_users_on_email')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_list("posts")  (0.0ms) PRAGMA index_list("stores")  (0.0ms) PRAGMA index_list("tags")  (0.0ms) PRAGMA index_list("users")