Fixed typo on column description

This commit is contained in:
João Vitória Silva
2025-07-16 12:52:31 +01:00
parent 091e0f3ca2
commit 6e17889605
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ class ActivityMedia(Base):
ForeignKey("activities.id", ondelete="CASCADE"),
nullable=False,
index=True,
comment="Activity ID that the activity lap belongs",
comment="Activity ID that the activity media belongs",
)
media_path = Column(String(length=250), nullable=True, comment="Media path")
media_type = Column(

View File

@@ -299,7 +299,7 @@ def upgrade() -> None:
"activity_id",
sa.Integer(),
nullable=False,
comment="Activity ID that the activity lap belongs",
comment="Activity ID that the activity media belongs",
),
sa.Column(
"media_path", sa.String(length=250), nullable=True, comment="Media path"