Skip to content

Commit 4dbff2d

Browse files
committed
Move bucket_url info into comment
1 parent a730436 commit 4dbff2d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

breadbox/breadbox/models/release_version.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,8 @@ class ReleaseFile(Base, UUIDMixin):
6262
size: Mapped[Optional[str]] = mapped_column(String, nullable=True) # e.g., "1.2GB"
6363
description: Mapped[Optional[str]] = mapped_column(String, nullable=True)
6464

65-
bucket_url: Mapped[Optional[str]] = mapped_column(
66-
String, nullable=True, info={"description": "gs path. empty means retracted"}
67-
)
65+
# gs path. empty means retracted
66+
bucket_url: Mapped[Optional[str]] = mapped_column(String, nullable=True)
6867
taiga_id: Mapped[Optional[str]] = mapped_column(String, nullable=True)
6968
canonical_taiga_id: Mapped[Optional[str]] = mapped_column(String, nullable=True)
7069
md5_hash: Mapped[Optional[str]] = mapped_column(String(32), nullable=True)

0 commit comments

Comments
 (0)