script.py.mako
sha256:bba4b69de173366aeb7d490d687ccffb6db9726374033addece89cf2b87642d8
docs: add production launch discovery report and infra laun…
Sonnet 5
8 days ago
| 1 | """${message} |
| 2 | |
| 3 | Revision ID: ${up_revision} |
| 4 | Revises: ${down_revision | comma,n} |
| 5 | Create Date: ${create_date} |
| 6 | |
| 7 | """ |
| 8 | from __future__ import annotations |
| 9 | |
| 10 | from typing import Sequence, Union |
| 11 | |
| 12 | from alembic import op |
| 13 | import sqlalchemy as sa |
| 14 | ${imports if imports else ""} |
| 15 | |
| 16 | # revision identifiers, used by Alembic. |
| 17 | revision: str = ${repr(up_revision)} |
| 18 | down_revision: Union[str, None] = ${repr(down_revision)} |
| 19 | branch_labels: Union[str, Sequence[str], None] = ${repr(branch_labels)} |
| 20 | depends_on: Union[str, Sequence[str], None] = ${repr(depends_on)} |
| 21 | |
| 22 | |
| 23 | def upgrade() -> None: |
| 24 | ${upgrades if upgrades else "pass"} |
| 25 | |
| 26 | |
| 27 | def downgrade() -> None: |
| 28 | ${downgrades if downgrades else "pass"} |
File History
2 commits
sha256:bba4b69de173366aeb7d490d687ccffb6db9726374033addece89cf2b87642d8
docs: add production launch discovery report and infra laun…
Sonnet 5
8 days ago
sha256:eb0928124669c933c0ef852bea1ad0c56649cf21bd7e9663c3b51004771b0591
docs: add MuseHub cloud identity/AWS operating model and Go…
Sonnet 5
patch
8 days ago