(0.8ms) SELECT sqlite_version(*)  (0.9ms) SELECT sqlite_version(*)  (1.2ms) SELECT sqlite_version(*)  (0.5ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT sqlite_version(*)  (0.1ms) SELECT sqlite_version(*)  (11.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (1.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC Migrating to CreateAlfas (20200923100317)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "alfas" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "a_boolean" boolean, "an_integer" integer, "a_decimal" decimal, "a_string" varchar, "a_date" date, "a_time" time, "a_datetime" datetime, "type" varchar, "encrypted_password" varchar, "reset_password_token" varchar, "reset_password_sent_at" varchar, "remember_created_at" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) primary::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100317"]]  (1.7ms) commit transaction Migrating to CreateBravos (20200923100328)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "bravos" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "a_boolean" boolean DEFAULT 0 NOT NULL, "an_integer" integer NOT NULL, "a_decimal" decimal NOT NULL, "a_string" varchar NOT NULL, "a_unique_value" integer, "a_string_from_options" varchar, "an_integer_from_options" integer, "an_absent_value" varchar, "a_regex" varchar, "an_array_enum" integer, "a_hash_enum" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) primary::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100328"]]  (1.7ms) commit transaction Migrating to CreateCharlies (20200923100329)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "charlies" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "alfa_id" integer NOT NULL, "a_json" json, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_c22432acee" FOREIGN KEY ("alfa_id") REFERENCES "alfas" ("id") )  (0.1ms) CREATE INDEX "index_charlies_on_alfa_id" ON "charlies" ("alfa_id") primary::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100329"]]  (1.6ms) commit transaction Migrating to CreateDeltas (20200923100330)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "deltas" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "bravo_id" integer NOT NULL, "zed_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_aa131d729d" FOREIGN KEY ("bravo_id") REFERENCES "bravos" ("id") , CONSTRAINT "fk_rails_afc1a9c87d" FOREIGN KEY ("zed_id") REFERENCES "charlies" ("id") )  (0.1ms) CREATE INDEX "index_deltas_on_bravo_id" ON "deltas" ("bravo_id")  (0.2ms) CREATE INDEX "index_deltas_on_zed_id" ON "deltas" ("zed_id") primary::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100330"]]  (10.1ms) commit transaction Migrating to CreateEchos (20200923100331)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "echos" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "echoable_type" varchar, "echoable_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)  (0.1ms) CREATE INDEX "index_echos_on_echoable_type_and_echoable_id" ON "echos" ("echoable_type", "echoable_id") primary::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100331"]]  (1.9ms) commit transaction Migrating to CreateFoxtrots (20200923100332)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "foxtrots" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) primary::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100332"]]  (1.9ms) commit transaction Migrating to CreateHotels (20200923100334)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "hotels" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) primary::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100334"]]  (2.1ms) commit transaction Migrating to CreateIndias (20200923100335)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "indias" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "hotel_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_304a9d92d0" FOREIGN KEY ("hotel_id") REFERENCES "hotels" ("id") )  (0.2ms) CREATE INDEX "index_indias_on_hotel_id" ON "indias" ("hotel_id")  (0.3ms) ALTER TABLE "hotels" ADD "india_id" integer  (0.1ms) CREATE INDEX "index_hotels_on_india_id" ON "hotels" ("india_id")  (0.0ms) PRAGMA foreign_keys  (0.1ms) PRAGMA defer_foreign_keys  (0.1ms) PRAGMA defer_foreign_keys = ON  (0.1ms) PRAGMA foreign_keys = OFF  (0.2ms) CREATE TEMPORARY TABLE "ahotels" ("id" integer NOT NULL PRIMARY KEY, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "india_id" integer DEFAULT NULL)  (0.1ms) CREATE INDEX "tindex_ahotels_on_india_id" ON "ahotels" ("india_id")  (0.1ms) INSERT INTO "ahotels" ("id","created_at","updated_at","india_id") SELECT "id","created_at","updated_at","india_id" FROM "hotels"  (0.2ms) DROP TABLE "hotels"  (0.1ms) CREATE TABLE "hotels" ("id" integer NOT NULL PRIMARY KEY, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "india_id" integer DEFAULT NULL, CONSTRAINT "fk_rails_2d98147578" FOREIGN KEY ("india_id") REFERENCES "indias" ("id") )  (0.1ms) CREATE INDEX "index_hotels_on_india_id" ON "hotels" ("india_id")  (0.1ms) INSERT INTO "hotels" ("id","created_at","updated_at","india_id") SELECT "id","created_at","updated_at","india_id" FROM "ahotels"  (0.1ms) DROP TABLE "ahotels"  (0.0ms) PRAGMA defer_foreign_keys = 0  (0.0ms) PRAGMA foreign_keys = 1 primary::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100335"]]  (2.3ms) commit transaction Migrating to CreateJulietts (20200923100336)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "julietts" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "alfa_id" integer NOT NULL, "a_string" varchar, "an_integer" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_996fd14f94" FOREIGN KEY ("alfa_id") REFERENCES "alfas" ("id") )  (0.1ms) CREATE INDEX "index_julietts_on_alfa_id" ON "julietts" ("alfa_id") primary::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100336"]]  (1.8ms) commit transaction ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.1ms) begin transaction ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2020-11-27 20:02:03.737152"], ["updated_at", "2020-11-27 20:02:03.737152"]]  (1.5ms) commit transaction  (0.1ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.8ms) SELECT sqlite_version(*)  (0.5ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT sqlite_version(*)  (0.0ms) SELECT sqlite_version(*)  (0.0ms) SELECT sqlite_version(*)  (11.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (1.6ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC Migrating to CreateAlfas (20200923100317)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "alfas" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "a_boolean" boolean, "an_integer" integer, "a_decimal" decimal, "a_string" varchar, "a_date" date, "a_time" time, "a_datetime" datetime, "type" varchar, "encrypted_password" varchar, "reset_password_token" varchar, "reset_password_sent_at" varchar, "remember_created_at" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) primary::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100317"]]  (1.5ms) commit transaction Migrating to CreateBravos (20200923100328)  (0.5ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.5ms) SELECT sqlite_version(*) ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.0ms) begin transaction ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2020-11-27 21:22:11.676774"], ["updated_at", "2020-11-27 21:22:11.676774"]]  (11.3ms) commit transaction  (0.6ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT sqlite_version(*)  (0.0ms) SELECT sqlite_version(*)  (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (1.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC Migrating to CreateAlfas (20200923100317)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "alfas" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "a_boolean" boolean, "an_integer" integer, "a_decimal" decimal, "a_string" varchar, "a_date" date, "a_time" time, "a_datetime" datetime, "type" varchar, "encrypted_password" varchar, "reset_password_token" varchar, "reset_password_sent_at" varchar, "remember_created_at" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) primary::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100317"]]  (1.7ms) commit transaction Migrating to CreateBravos (20200923100328)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "bravos" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "a_boolean" boolean DEFAULT 0 NOT NULL, "an_integer" integer NOT NULL, "a_decimal" decimal NOT NULL, "a_string" varchar NOT NULL, "a_unique_value" integer, "a_string_from_options" varchar, "an_integer_from_options" integer, "an_absent_value" varchar, "a_regex" varchar, "an_enum" integer, "a_json" json, "an_array" text, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) primary::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100328"]]  (1.5ms) commit transaction Migrating to CreateCharlies (20200923100329)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "charlies" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "alfa_id" integer NOT NULL, "a_json" json, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_c22432acee" FOREIGN KEY ("alfa_id") REFERENCES "alfas" ("id") )  (0.2ms) CREATE INDEX "index_charlies_on_alfa_id" ON "charlies" ("alfa_id") primary::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100329"]]  (1.8ms) commit transaction Migrating to CreateDeltas (20200923100330)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "deltas" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "bravo_id" integer NOT NULL, "zed_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_aa131d729d" FOREIGN KEY ("bravo_id") REFERENCES "bravos" ("id") , CONSTRAINT "fk_rails_afc1a9c87d" FOREIGN KEY ("zed_id") REFERENCES "charlies" ("id") )  (0.1ms) CREATE INDEX "index_deltas_on_bravo_id" ON "deltas" ("bravo_id")  (0.1ms) CREATE INDEX "index_deltas_on_zed_id" ON "deltas" ("zed_id") primary::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100330"]]  (1.8ms) commit transaction Migrating to CreateEchos (20200923100331)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "echos" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "echoable_type" varchar, "echoable_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)  (0.2ms) CREATE INDEX "index_echos_on_echoable_type_and_echoable_id" ON "echos" ("echoable_type", "echoable_id") primary::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100331"]]  (1.7ms) commit transaction Migrating to CreateFoxtrots (20200923100332)  (1.0ms) begin transaction  (0.3ms) CREATE TABLE "foxtrots" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) primary::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100332"]]  (1.8ms) commit transaction Migrating to CreateHotels (20200923100334)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "hotels" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) primary::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100334"]]  (1.7ms) commit transaction Migrating to CreateIndias (20200923100335)  (0.7ms) begin transaction  (0.2ms) CREATE TABLE "indias" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "hotel_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_304a9d92d0" FOREIGN KEY ("hotel_id") REFERENCES "hotels" ("id") )  (0.1ms) CREATE INDEX "index_indias_on_hotel_id" ON "indias" ("hotel_id")  (0.3ms) ALTER TABLE "hotels" ADD "india_id" integer  (0.1ms) CREATE INDEX "index_hotels_on_india_id" ON "hotels" ("india_id")  (0.0ms) PRAGMA foreign_keys  (0.1ms) PRAGMA defer_foreign_keys  (0.1ms) PRAGMA defer_foreign_keys = ON  (0.0ms) PRAGMA foreign_keys = OFF  (0.2ms) CREATE TEMPORARY TABLE "ahotels" ("id" integer NOT NULL PRIMARY KEY, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "india_id" integer DEFAULT NULL)  (0.1ms) CREATE INDEX "tindex_ahotels_on_india_id" ON "ahotels" ("india_id")  (0.1ms) INSERT INTO "ahotels" ("id","created_at","updated_at","india_id") SELECT "id","created_at","updated_at","india_id" FROM "hotels"  (0.2ms) DROP TABLE "hotels"  (0.2ms) CREATE TABLE "hotels" ("id" integer NOT NULL PRIMARY KEY, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "india_id" integer DEFAULT NULL, CONSTRAINT "fk_rails_2d98147578" FOREIGN KEY ("india_id") REFERENCES "indias" ("id") )  (0.1ms) CREATE INDEX "index_hotels_on_india_id" ON "hotels" ("india_id")  (0.1ms) INSERT INTO "hotels" ("id","created_at","updated_at","india_id") SELECT "id","created_at","updated_at","india_id" FROM "ahotels"  (0.1ms) DROP TABLE "ahotels"  (0.0ms) PRAGMA defer_foreign_keys = 0  (0.1ms) PRAGMA foreign_keys = 1 primary::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100335"]]  (1.7ms) commit transaction Migrating to CreateJulietts (20200923100336)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "julietts" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "alfa_id" integer NOT NULL, "a_string" varchar, "an_integer" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_996fd14f94" FOREIGN KEY ("alfa_id") REFERENCES "alfas" ("id") )  (0.1ms) CREATE INDEX "index_julietts_on_alfa_id" ON "julietts" ("alfa_id") primary::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200923100336"]]  (1.7ms) commit transaction ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.0ms) begin transaction ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2020-11-27 21:22:14.911596"], ["updated_at", "2020-11-27 21:22:14.911596"]]  (1.3ms) commit transaction  (0.1ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC