Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:

env:
DATABASE_SCHEMA: 5.1.0
DATABASE_SCHEMA: 5.2.0

permissions:
contents: read
Expand Down
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ History
Unreleased / main
-------------------

12.0.2 (2026-07-13)
-------------------

* Update database schema to v5.2.0

12.0.1 (2026-05-18)
-------------------

Expand Down
7 changes: 6 additions & 1 deletion src/ispyb/sqlalchemy/_auto_db_schema.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__schema_version__ = "5.1.0"
__schema_version__ = "5.2.0"
import datetime
import decimal
from typing import List, Optional
Expand Down Expand Up @@ -6917,6 +6917,10 @@ class AutoProcProgram(Base):
processingJobId: Mapped[Optional[int]] = mapped_column(INTEGER(11))
processingPipelineId: Mapped[Optional[int]] = mapped_column(INTEGER(11))
parentAutoProcProgramId: Mapped[Optional[int]] = mapped_column(INTEGER(10))
jobUuid: Mapped[Optional[bytes]] = mapped_column(
BINARY(16),
comment="External UUID for the job as described by the Zocalo service",
)

AutoProcProgram: Mapped["AutoProcProgram"] = relationship(
"AutoProcProgram",
Expand Down Expand Up @@ -7658,6 +7662,7 @@ class Tomogram(Base):
pixelLocationY: Mapped[Optional[int]] = mapped_column(
INTEGER(11), comment="pixel location of tomogram centre on search map image (y)"
)
thickness: Mapped[Optional[float]] = mapped_column(Float, comment="Unit: nm")

AutoProcProgram: Mapped["AutoProcProgram"] = relationship(
"AutoProcProgram", back_populates="Tomogram"
Expand Down
Loading