"""Initial migration.
|
|
|
|
Revision ID: aa6e7ede1321
|
|
Revises: 9f932e36f8fb
|
|
Create Date: 2024-06-10 15:16:49.313757
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'aa6e7ede1321'
|
|
down_revision = '9f932e36f8fb'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.create_table('user',
|
|
sa.Column('id', sa.Integer(), nullable=False),
|
|
sa.Column('email', sa.String(length=100), nullable=True),
|
|
sa.Column('password', sa.String(length=100), nullable=True),
|
|
sa.Column('name', sa.String(length=1000), nullable=True),
|
|
sa.PrimaryKeyConstraint('id'),
|
|
sa.UniqueConstraint('email')
|
|
)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_table('user')
|
|
# ### end Alembic commands ###
|