mirror of
https://github.com/simple-login/app.git
synced 2024-11-17 01:18:29 +01:00
bdb0c8bd08
* feat: alias audit log * feat: crontab to delete old alias_audit_log entries * Unified messages --------- Co-authored-by: Adrià Casajús <adria.casajus@proton.ch>
45 lines
1.7 KiB
Python
45 lines
1.7 KiB
Python
"""alias_audit_log
|
|
|
|
Revision ID: 91ed7f46dc81
|
|
Revises: 62afa3a10010
|
|
Create Date: 2024-10-11 13:22:11.594054
|
|
|
|
"""
|
|
import sqlalchemy_utils
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '91ed7f46dc81'
|
|
down_revision = '62afa3a10010'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.create_table('alias_audit_log',
|
|
sa.Column('id', sa.Integer(), autoincrement=True, nullable=False),
|
|
sa.Column('created_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=False),
|
|
sa.Column('updated_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=True),
|
|
sa.Column('user_id', sa.Integer(), nullable=False),
|
|
sa.Column('alias_id', sa.Integer(), nullable=False),
|
|
sa.Column('alias_email', sa.String(length=255), nullable=False),
|
|
sa.Column('action', sa.String(length=255), nullable=False),
|
|
sa.Column('message', sa.Text(), nullable=True),
|
|
sa.PrimaryKeyConstraint('id')
|
|
)
|
|
op.create_index('ix_alias_audit_log_alias_email', 'alias_audit_log', ['alias_email'], unique=False)
|
|
op.create_index('ix_alias_audit_log_alias_id', 'alias_audit_log', ['alias_id'], unique=False)
|
|
op.create_index('ix_alias_audit_log_user_id', 'alias_audit_log', ['user_id'], unique=False)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_index('ix_alias_audit_log_user_id', table_name='alias_audit_log')
|
|
op.drop_index('ix_alias_audit_log_alias_id', table_name='alias_audit_log')
|
|
op.drop_index('ix_alias_audit_log_alias_email', table_name='alias_audit_log')
|
|
op.drop_table('alias_audit_log')
|
|
# ### end Alembic commands ###
|