Cascade the models when deleting tags

This commit is contained in:
fleaz 2023-02-24 00:02:33 +01:00
parent 78b3befcb3
commit 763427017b
No known key found for this signature in database
GPG key ID: AED15F8FDD04D083

View file

@ -51,7 +51,7 @@ class Tag(Base):
name = Column(String, unique=True)
reporting = Column(Boolean, default=True)
description = Column(String)
transactions = relationship("Transaction", secondary=association_table, back_populates="tags")
transactions = relationship("Transaction", secondary=association_table, back_populates="tags", cascade="all")
def __repr__(self):
return f"<Tag {self.name}>"