majuna/migrations/versions/e1332e4cb910_add_mirror_lists.py

42 lines
1.3 KiB
Python
Raw Normal View History

2022-03-10 14:26:22 +00:00
"""add mirror lists
Revision ID: e1332e4cb910
Revises: 07c4fb2af22c
Create Date: 2022-03-31 13:33:49.067575
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = 'e1332e4cb910'
down_revision = '07c4fb2af22c'
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.create_table('mirror_list',
sa.Column('id', sa.Integer(), nullable=False),
sa.Column('provider', sa.String(length=255), nullable=False),
sa.Column('description', sa.String(length=255), nullable=False),
sa.Column('format', sa.String(length=20), nullable=False),
sa.Column('container', sa.String(length=255), nullable=False),
sa.Column('branch', sa.String(length=255), nullable=False),
sa.Column('filename', sa.String(length=255), nullable=False),
sa.Column('added', sa.DateTime(), nullable=False),
sa.Column('updated', sa.DateTime(), nullable=False),
sa.Column('deprecated', sa.DateTime(), nullable=True),
sa.Column('destroyed', sa.DateTime(), nullable=True),
sa.PrimaryKeyConstraint('id', name=op.f('pk_mirror_list'))
)
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_table('mirror_list')
# ### end Alembic commands ###