1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-30 21:45:59 -04:00

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
@@ -1,5 +0,0 @@
-- CreateTable
CREATE TABLE "hits" (
"slug" TEXT NOT NULL PRIMARY KEY,
"hits" INTEGER NOT NULL DEFAULT 1
);
@@ -0,0 +1,7 @@
-- CreateTable
CREATE TABLE "hits" (
"slug" TEXT NOT NULL,
"hits" INTEGER NOT NULL DEFAULT 1,
CONSTRAINT "hits_pkey" PRIMARY KEY ("slug")
);
+2 -2
View File
@@ -1,3 +1,3 @@
# Please do not edit this file manually
# It should be added in your version-control system (i.e. Git)
provider = "sqlite"
# It should be added in your version-control system (e.g., Git)
provider = "postgresql"