Added column: workspace

This commit is contained in:
ManInDark 2023-08-16 20:48:40 +02:00
parent bb12f05926
commit bd980c0b5e
No known key found for this signature in database
GPG Key ID: 72EC12A5B2D62779

View File

@ -24,6 +24,7 @@ class GalleryImage(Base):
use_upscale = Column(String)
prompt = Column(String)
negative_prompt = Column(String)
workspace = Column(String, server_default="default")
time_created = Column(DateTime(timezone=True), server_default=func.now())
nsfw = Column(Boolean, server_default=None)