(134.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)   (132.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateActiveAdminComments (20141016225515)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "namespace" varchar(255), "body" text, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "author_id" integer, "author_type" varchar(255), "created_at" datetime, "updated_at" datetime)   (0.2ms) CREATE INDEX "index_active_admin_comments_on_namespace" ON "active_admin_comments" ("namespace")  (0.2ms) CREATE INDEX "index_active_admin_comments_on_author_type_and_author_id" ON "active_admin_comments" ("author_type", "author_id")  (0.2ms) CREATE INDEX "index_active_admin_comments_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id") SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141016225515"]]  (103.9ms) commit transaction Migrating to CreatePeopleUsers (20141016225555)  (0.2ms) begin transaction  (0.9ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)  (11.3ms) CREATE UNIQUE INDEX "index_people_users_on_username" ON "people_users" ("username")  (0.2ms) CREATE UNIQUE INDEX "index_people_users_on_email" ON "people_users" ("email") SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141016225555"]]  (104.3ms) commit transaction Migrating to CreateArcadexTokens (20141016225556)  (0.3ms) begin transaction  (1.3ms) 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.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141016225556"]]  (147.5ms) commit transaction Migrating to AddIndexToToken (20141016225557)  (0.3ms) begin transaction  (1.6ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token") SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141016225557"]]  (102.6ms) commit transaction Migrating to AddFirstIpAddressToArcadexTokens (20141016225558)  (0.2ms) begin transaction  (1.7ms) ALTER TABLE "arcadex_tokens" ADD "first_ip_address" varchar(255) SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141016225558"]]  (93.7ms) commit transaction Migrating to AddCurrentIpAddressToArcadexTokens (20141016225559)  (0.3ms) begin transaction  (2.1ms) ALTER TABLE "arcadex_tokens" ADD "current_ip_address" varchar(255) SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141016225559"]]  (113.3ms) commit transaction Migrating to AddTimesUsedToArcadexTokens (20141016225560)  (0.2ms) begin transaction  (1.4ms) ALTER TABLE "arcadex_tokens" ADD "times_used" integer SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141016225560"]]  (112.9ms) commit transaction Migrating to AddExpirationMinutesToArcadexTokens (20141016225561)  (0.3ms) begin transaction  (1.8ms) ALTER TABLE "arcadex_tokens" ADD "expiration_minutes" integer SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141016225561"]]  (114.1ms) commit transaction Migrating to CreateDefconAdminUsers (20141016225562)  (0.3ms) begin transaction  (1.5ms) CREATE TABLE "defcon_admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "password_digest" varchar(255), "read_only" boolean, "attempts" integer, "max_attempts" integer, "master" boolean, "priority" integer, "created_at" datetime, "updated_at" datetime) SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141016225562"]]  (147.8ms) commit transaction Migrating to AddIndexToDefconAdminUsers (20141016225563)  (0.3ms) begin transaction  (2.3ms) CREATE UNIQUE INDEX "index_defcon_admin_users_on_username" ON "defcon_admin_users" ("username") SQL (0.8ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141016225563"]]  (112.9ms) commit transaction Migrating to AddEmailToDefconAdminUsers (20141016225564)  (0.3ms) begin transaction  (0.7ms) ALTER TABLE "defcon_admin_users" ADD "email" varchar(255)  (0.2ms) CREATE UNIQUE INDEX "index_defcon_admin_users_on_email" ON "defcon_admin_users" ("email") SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141016225564"]]  (127.6ms) commit transaction ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) begin transaction Defcon::AdminUser Exists (0.2ms) SELECT 1 AS one FROM "defcon_admin_users" WHERE LOWER("defcon_admin_users"."username") = LOWER('admin') LIMIT 1 Defcon::AdminUser Exists (0.2ms) SELECT 1 AS one FROM "defcon_admin_users" WHERE "defcon_admin_users"."email" IS NULL LIMIT 1 Binary data inserted for `string` type on column `password_digest` SQL (26.9ms) INSERT INTO "defcon_admin_users" ("attempts", "created_at", "master", "password_digest", "priority", "read_only", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Thu, 16 Oct 2014 22:56:21 UTC +00:00], ["master", true], ["password_digest", "$2a$10$2Dn0LBEF4kUx9pdkkCbvP.xQW8qIgdcAyOCuCPUbeWgQLtQqp1VeC"], ["priority", 0], ["read_only", false], ["updated_at", Thu, 16 Oct 2014 22:56:21 UTC +00:00], ["username", "admin"]]  (122.1ms) commit transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddMaxUsesToArcadexTokens (20141020173805)  (0.1ms) begin transaction  (1.0ms) ALTER TABLE "arcadex_tokens" ADD "max_uses" integer SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141020173805"]]  (124.1ms) commit transaction ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"