This commit is contained in:
headlessdev
2025-04-11 16:51:50 +02:00
parent 638adac706
commit 3d4a8a05b3
28 changed files with 8367 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
-- CreateTable
CREATE TABLE "application" (
"id" SERIAL NOT NULL,
"name" TEXT NOT NULL,
"description" TEXT,
"icon" TEXT NOT NULL,
"publicURL" TEXT NOT NULL,
"localURL" TEXT,
CONSTRAINT "application_pkey" PRIMARY KEY ("id")
);

View File

@@ -0,0 +1,3 @@
# Please do not edit this file manually
# It should be added in your version-control system (e.g., Git)
provider = "postgresql"