feat(db): update migration dependency to correct previous revision

The migration file `20260303_create_llm_model_configs_table.py` had an incorrect `down_revision` reference. Changed from `7ceeddd9c9a8` to `98083573d011` to properly link to the previous migration in the Alembic history. This ensures the migration chain is consistent and rollbacks work as expected.
This commit is contained in:
YueGuobin 2026-03-03 17:58:48 +08:00
parent fc7275878e
commit 3632641127

View File

@ -1,7 +1,7 @@
"""create llm_model_configs table
Revision ID: 20260303_create_llm_model_configs
Revises: 7ceeddd9c9a8
Revises: 98083573d011
Create Date: 2026-03-03
"""
@ -12,7 +12,7 @@ from sqlalchemy import inspect
# revision identifiers, used by Alembic.
revision = '20260303_create_llm_model_configs'
down_revision = '7ceeddd9c9a8'
down_revision = '98083573d011'
branch_labels = None
depends_on = None