(2.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateMessages (20150222083608)  (0.2ms) begin transaction  (0.5ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150222083608"]]  (1.2ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.1ms) begin transaction SQL (3.0ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 20:49:16.215058"], ["updated_at", "2015-02-22 20:49:16.215058"]]  (1.2ms) commit transaction  (0.1ms) SELECT COUNT(*) FROM "messages"  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 20:49:46.412513"], ["updated_at", "2015-02-22 20:49:46.412513"]]  (2.1ms) commit transaction ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateFoos (20150223004816)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150223004816"]]  (1.8ms) commit transaction Migrating to CreateBars (20150223004834)  (0.1ms) begin transaction  (0.7ms) CREATE TABLE "bars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150223004834"]]  (1.3ms) commit transaction Migrating to CreateFoobars (20150223004841)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "foobars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150223004841"]]  (1.1ms) commit transaction Migrating to CreateBarfoos (20150223004852)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "barfoos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150223004852"]]  (1.1ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"