-- CreateTable CREATE TABLE "PlayerState" ( "id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "identifier" TEXT NOT NULL, "genreKey" TEXT NOT NULL, "gameState" TEXT NOT NULL, "statistics" TEXT NOT NULL, "lastPlayed" DATETIME NOT NULL, "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ); -- CreateIndex CREATE INDEX "PlayerState_identifier_idx" ON "PlayerState"("identifier"); -- CreateIndex CREATE UNIQUE INDEX "PlayerState_identifier_genreKey_key" ON "PlayerState"("identifier", "genreKey");