Add optional icon field to server model in Prisma schema

This commit is contained in:
headlessdev 2025-04-19 15:17:20 +02:00
parent b42c1a45cc
commit b655b7fe2d
2 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "server" ADD COLUMN "icon" TEXT;

View File

@ -37,6 +37,7 @@ model server {
host Boolean @default(false) host Boolean @default(false)
hostServer Int? hostServer Int?
name String name String
icon String?
os String? os String?
ip String? ip String?
url String? url String?