You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
"""init
|
|
|
|
Revision ID: 72cf3e7ce522
|
|
Revises:
|
|
Create Date: 2022-02-13 18:53:59.037824
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
import sqlmodel # NEW
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '72cf3e7ce522'
|
|
down_revision = None
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.create_table('song',
|
|
sa.Column('name', sqlmodel.sql.sqltypes.AutoString(), nullable=False),
|
|
sa.Column('artist', sqlmodel.sql.sqltypes.AutoString(), nullable=False),
|
|
sa.Column('id', sa.Integer(), nullable=True),
|
|
sa.PrimaryKeyConstraint('id')
|
|
)
|
|
op.create_index(op.f('ix_song_artist'), 'song', ['artist'], unique=False)
|
|
op.create_index(op.f('ix_song_id'), 'song', ['id'], unique=False)
|
|
op.create_index(op.f('ix_song_name'), 'song', ['name'], unique=False)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_index(op.f('ix_song_name'), table_name='song')
|
|
op.drop_index(op.f('ix_song_id'), table_name='song')
|
|
op.drop_index(op.f('ix_song_artist'), table_name='song')
|
|
op.drop_table('song')
|
|
# ### end Alembic commands ###
|