refactor(migration): update revision identifier for backfill migration

This commit changes the revision identifier from '0020_backfill_all_missing_columns' to '0020_backfill_missing_schema' to better reflect the purpose of the migration, which focuses on backfilling missing schema elements in the database.
This commit is contained in:
penghanyuan
2026-05-17 22:11:02 +02:00
parent 6b1d63524e
commit 982033974c

View File

@@ -16,7 +16,7 @@ import sqlalchemy as sa
from alembic import op
revision: str = "0020_backfill_all_missing_columns"
revision: str = "0020_backfill_missing_schema"
down_revision: Union[str, None] = "0019_backfill_missing_columns"
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None