fix table name

This commit is contained in:
Son 2021-10-13 10:52:41 +02:00
parent e13a974e53
commit 3a0b125323
1 changed files with 1 additions and 1 deletions

View File

@ -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)