Für jedes Bild eigenen Prompt

This commit is contained in:
Simon Lübeß
2023-10-14 14:33:35 +02:00
parent fa75985014
commit dc81c5ce60
14 changed files with 161 additions and 231 deletions

View File

@ -2,7 +2,8 @@
(
[Id] INT NOT NULL PRIMARY KEY IDENTITY,
[Datum] DATETIME2 NOT NULL,
[Dateiname] NCHAR(256) NOT NULL,
[ImageModel] NCHAR(32) NOT NULL,
[WunschId] INT NOT NULL
[Dateiname] NVARCHAR(256) NOT NULL,
[ImageModel] NVARCHAR(32) NOT NULL,
[WunschId] INT NOT NULL,
[Prompt] NVARCHAR(MAX) NOT NULL DEFAULT 'Prompt nicht verfügbar'
)