mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-07-19 22:35:32 -04:00
running back to postgres, once again...
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
-- CreateTable
|
||||
CREATE TABLE "hits" (
|
||||
"slug" TEXT NOT NULL PRIMARY KEY,
|
||||
"hits" INTEGER NOT NULL DEFAULT 1
|
||||
);
|
7
prisma/migrations/20250212194621_init/migration.sql
Normal file
7
prisma/migrations/20250212194621_init/migration.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
-- CreateTable
|
||||
CREATE TABLE "hits" (
|
||||
"slug" TEXT NOT NULL,
|
||||
"hits" INTEGER NOT NULL DEFAULT 1,
|
||||
|
||||
CONSTRAINT "hits_pkey" PRIMARY KEY ("slug")
|
||||
);
|
@@ -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"
|
Reference in New Issue
Block a user