This commit is contained in:
gpatruno
2026-06-11 17:30:13 +02:00
parent 36b4acb355
commit e45e9f154e
108 changed files with 9163 additions and 167 deletions
@@ -0,0 +1,16 @@
-- AlterTable
ALTER TABLE "SiteContent" ADD COLUMN "scheduleIntro" TEXT NOT NULL DEFAULT '';
-- CreateTable
CREATE TABLE "TruckEvent" (
"id" TEXT NOT NULL PRIMARY KEY,
"eventDate" TEXT NOT NULL,
"timeLabel" TEXT NOT NULL DEFAULT '',
"location" TEXT NOT NULL,
"note" TEXT NOT NULL DEFAULT '',
"createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
"updatedAt" DATETIME NOT NULL
);
-- CreateIndex
CREATE INDEX "TruckEvent_eventDate_idx" ON "TruckEvent"("eventDate");