(1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20150727081137)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150727081137"]]  (1.6ms) commit transaction Migrating to CreateCountries (20150727081314)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150727081314"]]  (1.4ms) commit transaction Migrating to CreatePlaces (20150727081755)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "places" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "country_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_places_on_country_id" ON "places" ("country_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150727081755"]]  (1.4ms) commit transaction Migrating to CreateVisits (20150727081827)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "visits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "place_id" integer, "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE INDEX "index_visits_on_place_id" ON "visits" ("place_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_visits_on_place_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_visits_on_place_id' AND type='index'   (0.1ms) CREATE INDEX "index_visits_on_user_id" ON "visits" ("user_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150727081827"]]  (1.5ms) commit transaction Migrating to CreateProducts (20150727081904)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150727081904"]]  (1.7ms) commit transaction Migrating to CreateActions (20150727081905)  (0.1ms) begin transaction  (0.8ms) CREATE TABLE "actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "visit_id" integer, "product_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_actions_on_visit_id" ON "actions" ("visit_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_actions_on_visit_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_actions_on_visit_id' AND type='index'  (0.1ms) CREATE INDEX "index_actions_on_product_id" ON "actions" ("product_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150727081905"]]  (1.4ms) commit transaction Migrating to CreateComments (20150727082016)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "commentable_id" integer, "commentable_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE INDEX "index_comments_on_commentable_type_and_commentable_id" ON "comments" ("commentable_type", "commentable_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150727082016"]]  (1.4ms) commit transaction ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_actions_on_product_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_actions_on_product_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_actions_on_visit_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_actions_on_visit_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_comments_on_commentable_type_and_commentable_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_comments_on_commentable_type_and_commentable_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_places_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_places_on_country_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_visits_on_user_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_visits_on_user_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_visits_on_place_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_visits_on_place_id' AND type='index'