(1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (1.4ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateProposalTokens (20121026005348)  (0.1ms) begin transaction DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class CreateProposalTokens < ActiveRecord::Migration[4.2] (called from load at /Users/rufuspost/Projects/ruby/proposal/.gems/ruby/2.2.0/bin/rake:23)  (0.4ms) CREATE TABLE "proposal_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar NOT NULL, "email" varchar NOT NULL, "proposable_type" varchar NOT NULL, "resource_type" varchar, "resource_id" integer, "proposer_type" varchar, "proposer_id" integer, "arguments" text, "accepted_at" datetime, "reminded_at" datetime, "expires_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "created_at" datetime NOT NULL)  (0.5ms) select sqlite_version(*)  (0.4ms) CREATE UNIQUE INDEX "index_proposal_tokens_on_token" ON "proposal_tokens" ("token")  (0.1ms) CREATE UNIQUE INDEX proposal_idx ON proposal_tokens ( email, proposable_type, resource_type, resource_id, expires_at, accepted_at )  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20121026005348"]]  (1.6ms) commit transaction Migrating to CreateUsers (20121026035505)  (0.1ms) begin transaction DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class CreateUsers < ActiveRecord::Migration[4.2] (called from load at /Users/rufuspost/Projects/ruby/proposal/.gems/ruby/2.2.0/bin/rake:23)  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "created_at" datetime, "updated_at" datetime) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20121026035505"]]  (0.9ms) commit transaction Migrating to CreateProjects (20121031041439)  (0.1ms) begin transaction DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class CreateProjects < ActiveRecord::Migration[4.2] (called from load at /Users/rufuspost/Projects/ruby/proposal/.gems/ruby/2.2.0/bin/rake:23)  (0.5ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20121031041439"]]  (1.2ms) commit transaction ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT ? [["LIMIT", 1]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", 2016-04-27 23:09:35 UTC], ["updated_at", 2016-04-27 23:09:35 UTC]]  (1.0ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='proposal_idx' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='proposal_idx' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_proposal_tokens_on_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_proposal_tokens_on_token' AND type='index'