mirror of
https://github.com/simple-login/app.git
synced 2026-02-18 20:13:47 +08:00
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
"""empty message
|
|
|
|
Revision ID: a5013ff0a00a
|
|
Revises: ccbfb61eda0d
|
|
Create Date: 2021-11-17 16:48:52.743798
|
|
|
|
"""
|
|
import sqlalchemy as sa
|
|
import sqlalchemy_utils
|
|
from alembic import op
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = "a5013ff0a00a"
|
|
down_revision = "ccbfb61eda0d"
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.create_table(
|
|
"deleted_directory",
|
|
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("name", sa.String(length=128), nullable=False),
|
|
sa.PrimaryKeyConstraint("id"),
|
|
sa.UniqueConstraint("name"),
|
|
)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_table("deleted_directory")
|
|
# ### end Alembic commands ###
|