0029_musehub_commits_created_at_server_default.py
python
sha256:20b27796ed512236119feef48b4577a8fd9ded05a15267dd4e6da23604ad1f1a
docs: update Suggested Ownership Split table to reflect ful…
Sonnet 5
29 days ago
| 1 | """Add server_default now() to musehub_commits.created_at. |
| 2 | |
| 3 | The ORM model declared server_default=sa.func.now() but it was never applied |
| 4 | to the DB, causing NOT NULL violations when the push handler inserts a commit |
| 5 | without supplying created_at explicitly. |
| 6 | |
| 7 | Revision ID: 0029 |
| 8 | Revises: 0028 |
| 9 | """ |
| 10 | from __future__ import annotations |
| 11 | |
| 12 | from alembic import op |
| 13 | import sqlalchemy as sa |
| 14 | |
| 15 | |
| 16 | revision = "0029" |
| 17 | down_revision = "0028" |
| 18 | branch_labels = None |
| 19 | depends_on = None |
| 20 | |
| 21 | |
| 22 | def upgrade() -> None: |
| 23 | op.get_bind().execute(sa.text( |
| 24 | "ALTER TABLE musehub_commits ALTER COLUMN created_at SET DEFAULT now()" |
| 25 | )) |
| 26 | |
| 27 | |
| 28 | def downgrade() -> None: |
| 29 | op.get_bind().execute(sa.text( |
| 30 | "ALTER TABLE musehub_commits ALTER COLUMN created_at DROP DEFAULT" |
| 31 | )) |
File History
3 commits
sha256:20b27796ed512236119feef48b4577a8fd9ded05a15267dd4e6da23604ad1f1a
docs: update Suggested Ownership Split table to reflect ful…
Sonnet 5
29 days ago
sha256:8ea2f75226d5834770ccaddbaa6efda1cc337446fd481bb385de8bec4555ae79
docs: Section 9 CI pipeline — confirm job queue is idempote…
Sonnet 5
29 days ago
sha256:80e1a60a39562f6e616aaafbb27487f03abbec7d8ffc6164302b7a0c0bfc63ee
docs: check off Section 0 items verified in inventory doc, …
Sonnet 5
29 days ago