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")
);

View File

@@ -22,4 +22,12 @@ model application {
publicURL String
localURL String?
createdAt DateTime @default(now())
}
model server {
id Int @id @default(autoincrement())
name String
os String?
ip String?
url String?
}