refactor(automation): rename trigger model config to params

This commit is contained in:
CREDO23 2026-05-27 13:29:22 +02:00
parent fe32cd35ed
commit c8a89ccac8
4 changed files with 4 additions and 4 deletions

View file

@ -33,7 +33,7 @@ class AutomationTrigger(BaseModel, TimestampMixin):
index=True,
)
config = Column(JSONB, nullable=False)
params = Column(JSONB, nullable=False)
enabled = Column(
Boolean,