Skip to content

Commit

Permalink
Fix conda_package_build "build" column type (#1011)
Browse files Browse the repository at this point in the history
  • Loading branch information
soapy1 authored Dec 9, 2024
1 parent 7a1c4cf commit 7642a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda-store-server/conda_store_server/_internal/orm.py
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ class CondaPackageBuild(Base):
channel_id: Mapped[int] = mapped_column(ForeignKey("conda_channel.id"))
channel: Mapped["CondaChannel"] = relationship(CondaChannel)

build: Mapped[int] = mapped_column(Unicode(64), index=True)
build: Mapped[str] = mapped_column(Unicode(64), index=True)
build_number: Mapped[int]
constrains: Mapped[dict] = mapped_column(JSON)
depends: Mapped[dict] = mapped_column(JSON)
Expand Down

0 comments on commit 7642a27

Please sign in to comment.