mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-29 16:14:43 +00:00
Applications need a Server
This commit is contained in:
2
prisma/migrations/20250412104250_server/migration.sql
Normal file
2
prisma/migrations/20250412104250_server/migration.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "application" ADD COLUMN "serverId" INTEGER NOT NULL DEFAULT 1;
|
||||
@@ -16,6 +16,7 @@ datasource db {
|
||||
|
||||
model application {
|
||||
id Int @id @default(autoincrement())
|
||||
serverId Int @default(1)
|
||||
name String
|
||||
description String?
|
||||
icon String
|
||||
|
||||
Reference in New Issue
Block a user