From 3a0b125323ed694e0e2cd1fab50d8917b4b6152d Mon Sep 17 00:00:00 2001 From: Son Date: Wed, 13 Oct 2021 10:52:41 +0200 Subject: [PATCH] fix table name --- app/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models.py b/app/models.py index f1e09f0b..5e6bc5df 100644 --- a/app/models.py +++ b/app/models.py @@ -2557,7 +2557,7 @@ class IgnoredEmail(Base, ModelMixin): class IgnoreBounceSender(Base, ModelMixin): """Ignore sender that doesn't correctly handle bounces, for example noreply@github.com""" - __tablename__ = "ignored_bounce_sender" + __tablename__ = "ignore_bounce_sender" mail_from = sa.Column(sa.String(512), nullable=False, unique=True)