trying to add gitea

This commit is contained in:
2026-02-22 03:08:09 +01:00
parent 7564da1148
commit a033efad5b
6 changed files with 111 additions and 1 deletions

View File

@@ -83,7 +83,7 @@ class Deck(db.Model):
id: Mapped[int] = mapped_column(primary_key=True)
name: Mapped[str] = mapped_column(String(60), unique=True, nullable=False)
deck: Mapped[str] = mapped_column(String(60), nullable=False)
description: Mapped[str] = mapped_column(String(60))
description: Mapped[str] = mapped_column(String(200))
index_file: Mapped[str] = mapped_column(String(40), nullable=False)
export_file: Mapped[Optional[str]] = mapped_column(String(40), nullable=True)