Applications need a Server

This commit is contained in:
headlessdev
2025-04-12 13:19:52 +02:00
parent 0506731a12
commit 43b7b3b270
12 changed files with 200 additions and 105 deletions

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "application" ADD COLUMN "serverId" INTEGER NOT NULL DEFAULT 1;

View File

@@ -16,6 +16,7 @@ datasource db {
model application {
id Int @id @default(autoincrement())
serverId Int @default(1)
name String
description String?
icon String