(125.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)   (99.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateArcadexTokens (20140806194834)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140806194834"]]  (144.2ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddIndexToToken (20140806202340)  (0.1ms) begin transaction  (0.2ms) CREATE UNIQUE INDEX "index_arcadex_token_on_auth_token" ON "arcadex_token" ("auth_token") SQLite3::SQLException: no such table: main.arcadex_token: CREATE UNIQUE INDEX "index_arcadex_token_on_auth_token" ON "arcadex_token" ("auth_token")  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddIndexToToken (20140806202340)  (0.1ms) begin transaction  (0.8ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token") SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140806202340"]]  (99.7ms) commit transaction ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddFirstIpAddressToArcadexTokens (20140910215044)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "arcadex_tokens" ADD "first_ip_address" varchar(255) SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140910215044"]]  (140.5ms) commit transaction Migrating to AddCurrentIpAddressToArcadexTokens (20140910215118)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "arcadex_tokens" ADD "current_ip_address" varchar(255) SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140910215118"]]  (141.4ms) commit transaction Migrating to AddTimesUsedToArcadexTokens (20140910215136)  (0.2ms) begin transaction  (2.4ms) ALTER TABLE "arcadex_tokens" ADD "times_used" integer SQL (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140910215136"]]  (124.5ms) commit transaction Migrating to AddExpirationMinutesToArcadexTokens (20140910215147)  (0.2ms) begin transaction  (1.5ms) ALTER TABLE "arcadex_tokens" ADD "expiration_minutes" integer SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140910215147"]]  (125.1ms) commit transaction Migrating to AddMaxUsesToArcadexTokens (20141020173616)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "arcadex_tokens" ADD "max_uses" integer SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141020173616"]]  (140.5ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_arcadex_tokens_on_auth_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'