1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-21 07:21:17 -04:00

point prisma to vercel postgres

This commit is contained in:
2023-06-17 21:24:12 -04:00
parent fd12689a49
commit d058279609
7 changed files with 27 additions and 10 deletions

View File

@@ -0,0 +1,7 @@
-- CreateTable
CREATE TABLE "hits" (
"slug" VARCHAR(128) NOT NULL,
"hits" INTEGER NOT NULL DEFAULT 1,
CONSTRAINT "hits_pkey" PRIMARY KEY ("slug")
);