mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
bec8cb2292
* Use the alias domain for contacts * Check there are not duplicate emails * Check also in trash * Use helper * Set VERP for the forward phase to the contact domain * Add pgp_fingerprint as index for contacts * Removed check trash * Only use reply domains for sl domains * Configure via db wether the domain can be used as a reverse_domain * Fix: typo * reverse logic * fix migration * fix test --------- Co-authored-by: Adrià Casajús <adria.casajus@proton.ch> Co-authored-by: Son <nguyenkims@users.noreply.github.com>
26 lines
407 B
Python
26 lines
407 B
Python
"""empty message
|
|
|
|
Revision ID: 2634b41f54db
|
|
Revises: 01e2997e90d3, 2d89315ac650
|
|
Create Date: 2023-04-20 11:47:43.048536
|
|
|
|
"""
|
|
import sqlalchemy_utils
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '2634b41f54db'
|
|
down_revision = ('01e2997e90d3', '2d89315ac650')
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
pass
|
|
|
|
|
|
def downgrade():
|
|
pass
|