Spaces:
Sleeping
Sleeping
Update Alembic configuration and migration scripts: change script location and version path in alembic.ini, add env.py for migration management, create initial migration script for audiobooks table, and implement migration execution in a new migrate.py script.
d4255ec
| """${message} | |
| Revision ID: ${up_revision} | |
| Revises: ${down_revision | comma,n} | |
| Create Date: ${create_date} | |
| """ | |
| from alembic import op | |
| import sqlalchemy as sa | |
| ${imports if imports else ""} | |
| # revision identifiers, used by Alembic. | |
| revision = ${repr(up_revision)} | |
| down_revision = ${repr(down_revision)} | |
| branch_labels = ${repr(branch_labels)} | |
| depends_on = ${repr(depends_on)} | |
| def upgrade() -> None: | |
| ${upgrades if upgrades else "pass"} | |
| def downgrade() -> None: | |
| ${downgrades if downgrades else "pass"} |