Add ignore_subscription functionality for events
This commit is contained in:
@@ -34,6 +34,7 @@ class Event(Base):
|
||||
team_prep_max: Mapped[int] = mapped_column(default=1, nullable=False)
|
||||
|
||||
subscriptions_applied: Mapped[bool] = mapped_column(default=False, nullable=False)
|
||||
ignore_subscriptions: Mapped[bool] = mapped_column(default=False, nullable=False)
|
||||
|
||||
registrations: Mapped[list["Registration"]] = relationship(
|
||||
"Registration", cascade="all, delete"
|
||||
|
||||
Reference in New Issue
Block a user