Auth works again; relationships between Trashbox and User added

This commit is contained in:
2023-08-08 01:22:47 +03:00
parent d3d7760c5b
commit 832a2ce985
8 changed files with 185 additions and 43 deletions

View File

@ -0,0 +1,34 @@
"""email->nickname in User model
Revision ID: 58290a82b821
Revises: 9c19b9658512
Create Date: 2023-08-07 23:37:58.017279
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = '58290a82b821'
down_revision = '9c19b9658512'
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
with op.batch_alter_table('users', schema=None) as batch_op:
batch_op.add_column(sa.Column('nickname', sa.String(), nullable=True))
batch_op.drop_column('email')
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
with op.batch_alter_table('users', schema=None) as batch_op:
batch_op.add_column(sa.Column('email', sa.VARCHAR(), nullable=True))
batch_op.drop_column('nickname')
# ### end Alembic commands ###