Nejsem si 100% jistý o PostgreSQL
syntaxe, ale po přidání do vašich BudgetCategories
model by to měl udělat pomocí CheckConstraint
:
class BudgetCategories(Base):
__tablename__ = 'budget_categories'
# ...
# @note: new
__table_args__ = (
CheckConstraint('NOT(category IS NULL AND parent_category IS NULL)'),
)