proxy backend

This commit is contained in:
Oli Passey
2025-12-21 16:54:13 +00:00
parent 1fb43156e8
commit 77bf4ffd05
30 changed files with 3010 additions and 79 deletions

View File

@@ -0,0 +1,13 @@
-- CreateTable
CREATE TABLE "QuickAction" (
"id" TEXT NOT NULL PRIMARY KEY,
"name" TEXT NOT NULL,
"icon" TEXT,
"groupId" TEXT,
"deviceId" TEXT,
"actionType" TEXT NOT NULL,
"actionPayload" TEXT NOT NULL,
"order" INTEGER NOT NULL DEFAULT 0,
"createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
"updatedAt" DATETIME NOT NULL
);