refactor: removed prisma and replaced with better-sqlite3

This commit is contained in:
Elias Renman
2023-07-03 13:32:41 +02:00
parent 01d3701a50
commit 19ef254a75
11 changed files with 737 additions and 123 deletions

View File

@@ -0,0 +1,7 @@
-- CreateTable
CREATE TABLE "MoistureValue" (
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
"name" TEXT NOT NULL,
"value" DECIMAL NOT NULL,
"createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
);