SQLite format 3@  D=//indexunique_schema_migrationsschema_migrationsCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")q//tableschema_migrationsschema_migrationsCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)9QtableitemsitemsCREATE TABLE "items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "price_in_cents" integer DEFAULT 0 NOT NULL, "price_currency" varchar(3) NOT NULL, "balance_in_cents" integer DEFAULT 0 NOT NULL, "balance_currency" varchar(3) NOT NULL, "another_money_attr_in_cents" integer DEFAULT 0 NOT NULL, "another_money_attr_currency" varchar(3) NOT NULL, "custom_money_amount" integer, "custom_money_currency" varchar(255))   0 0