37 lines
984 B
Python
37 lines
984 B
Python
"""Add settings table
|
|
|
|
Revision ID: b0983648595e
|
|
Revises: 1bc727e5e87f
|
|
Create Date: 2021-03-26 13:33:41.994508
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'b0983648595e'
|
|
down_revision = '1bc727e5e87f'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.create_table('settings',
|
|
sa.Column('id', sa.Integer(), autoincrement=True, nullable=False),
|
|
sa.Column('name', sa.String(length=32), nullable=False),
|
|
sa.Column('f_datetime', sa.DateTime(), nullable=True),
|
|
sa.Column('f_int', sa.Integer(), nullable=True),
|
|
sa.Column('f_string', sa.String(length=128), nullable=True),
|
|
sa.PrimaryKeyConstraint('id'),
|
|
sa.UniqueConstraint('name')
|
|
)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_table('settings')
|
|
# ### end Alembic commands ###
|