(0.1ms) select sqlite_version(*)  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.0ms) PRAGMA index_list("schema_migrations")  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateQuestions (20120219165346)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "questions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "summary" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120219165346')  (1.0ms) commit transaction Migrating to CreateAnswers (20120219165548)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "question_id" integer, "body" text, "sequential_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("answers")  (0.2ms) CREATE INDEX "index_answers_on_question_id" ON "answers" ("question_id")  (0.0ms) PRAGMA index_list("answers")  (0.0ms) PRAGMA index_info('index_answers_on_question_id')  (0.2ms) CREATE INDEX "index_answers_on_sequential_id" ON "answers" ("sequential_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120219165548')  (1.2ms) commit transaction Migrating to CreateAccounts (20120219171957)  (0.0ms) begin transaction  (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120219171957')  (1.0ms) commit transaction Migrating to CreateInvoices (20120219172039)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "invoices" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sequential_id" integer, "account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("invoices")  (0.1ms) CREATE INDEX "index_invoices_on_account_id" ON "invoices" ("account_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120219172039')  (1.1ms) commit transaction Migrating to CreateOrders (20120219172922)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "orders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product" varchar(255), "account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120219172922')  (1.2ms) commit transaction Migrating to CreateSubscriptions (20120219174931)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "subscriptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "plan" varchar(255), "sequential_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120219174931')  (0.8ms) commit transaction Migrating to CreateUsers (20120219175744)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "account_id" integer, "name" varchar(255), "custom_sequential_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("users")  (0.2ms) CREATE INDEX "index_users_on_account_id" ON "users" ("account_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120219175744')  (1.1ms) commit transaction  (0.5ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("accounts")  (0.0ms) PRAGMA index_list("answers")  (0.0ms) PRAGMA index_info('index_answers_on_sequential_id')  (0.0ms) PRAGMA index_info('index_answers_on_question_id')  (0.0ms) PRAGMA index_list("invoices")  (0.0ms) PRAGMA index_info('index_invoices_on_account_id')  (0.0ms) PRAGMA index_list("orders")  (0.0ms) PRAGMA index_list("questions")  (0.0ms) PRAGMA index_list("subscriptions")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_account_id')