reformat python file

This commit is contained in:
Thomas Peetz
2025-01-27 15:21:51 +01:00
parent 93c7498a83
commit d01489b1fa
+1 -1
View File
@@ -20,6 +20,7 @@ class BaseMixin:
# version = Column(Integer)
version: Mapped[int] = mapped_column(default=0)
class BaseVideoMixin:
cloud_link = Column(String(255))
file_name = Column(String(255))
@@ -28,4 +29,3 @@ class BaseVideoMixin:
title = Column(String(255))
url = Column(String(255), unique=True)
should_download = Column(BIT(1))