feat: setting default attributes after deal creating

This commit is contained in:
2025-10-28 17:20:48 +04:00
parent 9b109a7270
commit 0e8c9077c9
5 changed files with 47 additions and 2 deletions

View File

@ -64,7 +64,7 @@ class Module(BaseModel):
)
attributes: Mapped[list["Attribute"]] = relationship(
secondary="module_attribute", back_populates="modules"
secondary="module_attribute", back_populates="modules", lazy="noload"
)
attribute_values: Mapped[list["AttributeValue"]] = relationship(