mirror of
https://github.com/simple-login/app.git
synced 2025-02-25 08:13:16 +08:00
add Contact.block_forward column
This commit is contained in:
parent
02a005d076
commit
9620f97449
2 changed files with 34 additions and 0 deletions
|
@ -1494,6 +1494,11 @@ class Contact(Base, ModelMixin):
|
|||
sa.Boolean, nullable=False, default=False, server_default="0"
|
||||
)
|
||||
|
||||
# emails sent from this contact will be blocked
|
||||
block_forward = sa.Column(
|
||||
sa.Boolean, nullable=False, default=False, server_default="0"
|
||||
)
|
||||
|
||||
@property
|
||||
def email(self):
|
||||
return self.website_email
|
||||
|
|
29
migrations/versions/2021_102810_6204e57b4bc4_.py
Normal file
29
migrations/versions/2021_102810_6204e57b4bc4_.py
Normal file
|
@ -0,0 +1,29 @@
|
|||
"""empty message
|
||||
|
||||
Revision ID: 6204e57b4bc4
|
||||
Revises: 0b9150eb309d
|
||||
Create Date: 2021-10-28 10:01:35.682267
|
||||
|
||||
"""
|
||||
import sqlalchemy_utils
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '6204e57b4bc4'
|
||||
down_revision = '0b9150eb309d'
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.add_column('contact', sa.Column('block_forward', sa.Boolean(), server_default='0', nullable=False))
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_column('contact', 'block_forward')
|
||||
# ### end Alembic commands ###
|
Loading…
Reference in a new issue