Ik ben niet 100% zeker van de PostgreSQL
syntaxis, maar na toevoeging aan uw BudgetCategories
model zou het moeten doen met CheckConstraint
:
class BudgetCategories(Base):
__tablename__ = 'budget_categories'
# ...
# @note: new
__table_args__ = (
CheckConstraint('NOT(category IS NULL AND parent_category IS NULL)'),
)