Server System

This commit is contained in:
headlessdev
2025-04-12 12:33:37 +02:00
parent c27713ba27
commit 0506731a12
20 changed files with 2049 additions and 21 deletions

View File

@@ -0,0 +1,10 @@
-- CreateTable
CREATE TABLE "server" (
"id" SERIAL NOT NULL,
"name" TEXT NOT NULL,
"os" TEXT,
"ip" TEXT,
"url" TEXT,
CONSTRAINT "server_pkey" PRIMARY KEY ("id")
);