Skip to content

Commit 8123d8e

Browse files
committed
Fixed saving of big file size (changed to bigint db column type)
1 parent 7ab038b commit 8123d8e

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

bbconf/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.14.2"
1+
__version__ = "0.14.3"

bbconf/db_utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,9 @@ class GeoGsmStatus(Base):
532532
nullable=True, index=True, comment="Bed identifier"
533533
)
534534

535-
file_size: Mapped[int] = mapped_column(default=0, comment="Size of the file")
535+
file_size: Mapped[int] = mapped_column(
536+
BigInteger, default=0, comment="Size of the file"
537+
)
536538
genome: Mapped[str] = mapped_column(nullable=True, comment="Genome")
537539

538540
gse_status_mapper: Mapped["GeoGseStatus"] = relationship(

docs/changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format.
44

5+
### [0.14.3] - 2026-01-31
6+
### Added:
7+
8+
### Fixed:
9+
- Saving of big file size (changed to bigint db column type)
510

611
### [0.14.2] - 2026-01-21
712
### Added:

0 commit comments

Comments
 (0)