script.py.mako
sha256:8e05daa29ba6702b4a2380a16d690ba31cc099d69c5c859bc6e6f16a0e945f99
Merge 'fix/deploy-memory-limits-and-log-group' into 'dev' —…
Human
6 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
3 commits
sha256:8e05daa29ba6702b4a2380a16d690ba31cc099d69c5c859bc6e6f16a0e945f99
Merge 'fix/deploy-memory-limits-and-log-group' into 'dev' —…
Human
6 days ago
sha256:3fadb0439bba9451b89229676971c0d4a40900dec7810e9d5f8791b8d950d505
fix: install.sh version from latest published tarball, not …
Sonnet 4.6
minor
⚠
97 days ago
sha256:763eb2cb8675073b84c19345b27586d2ed939a9aee97c5479b69f502f1a70eff
fix(tests): update test suite to match current implementation
Sonnet 4.6
patch
119 days ago