mirror of
https://github.com/joaovitoriasilva/endurain.git
synced 2026-01-09 15:57:59 -05:00
Fixed typo on column description
This commit is contained in:
@@ -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(
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user