mirror of
https://git.victorphan.net/basketballcantho/ten-project.git
synced 2026-08-05 14:13:12 +07:00
18 lines
261 B
Mako
18 lines
261 B
Mako
"""Alembic migration script template."""
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = None
|
|
down_revision = None
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
from alembic import op # noqa
|
|
|
|
|
|
def upgrade() -> None:
|
|
pass
|
|
|
|
|
|
def downgrade() -> None:
|
|
pass
|