mirror of
https://github.com/GNS3/gns3-server.git
synced 2026-09-03 00:25:17 +03:00
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:
parent
fc7275878e
commit
3632641127
@ -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
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user