running back to postgres, once again...

This commit is contained in:
2025-02-12 15:12:50 -05:00
parent 92e58805ec
commit 83527e0c61
11 changed files with 128 additions and 372 deletions
@@ -0,0 +1,7 @@
-- CreateTable
CREATE TABLE "hits" (
"slug" TEXT NOT NULL,
"hits" INTEGER NOT NULL DEFAULT 1,
CONSTRAINT "hits_pkey" PRIMARY KEY ("slug")
);