From eebdb532bfce2164443482612c3eded1ea42ee40 Mon Sep 17 00:00:00 2001 From: Sait Cakmak Date: Tue, 2 Jun 2026 08:07:21 -0700 Subject: [PATCH] Add step size to SQAParameter class Summary: Just adds the field to the SQAParameter class to help with testing. The remaining plumbing will be done as part of the diff that adds the attribute to the RangeParameter class. Differential Revision: D107108021 --- ax/storage/sqa_store/sqa_classes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ax/storage/sqa_store/sqa_classes.py b/ax/storage/sqa_store/sqa_classes.py index f30999ce2eb..1cb3f14cd4e 100644 --- a/ax/storage/sqa_store/sqa_classes.py +++ b/ax/storage/sqa_store/sqa_classes.py @@ -102,6 +102,7 @@ class SQAParameter(Base): # Attributes for Range Parameters digits: Mapped[int | None] = Column(Integer) + step_size: Mapped[float | None] = Column(Float) log_scale: Mapped[bool | None] = Column(Boolean) lower: Mapped[Decimal | None] = Column(Float) upper: Mapped[Decimal | None] = Column(Float)