Skip to content

Commit 9f18aea

Browse files
committed
fix(alembic): merge v2.6.0 migration heads
1 parent dd12964 commit 9f18aea

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
"""F048: merge the knowledge-file and assistant-knowledge-auth heads.
2+
3+
Revision ID: f048_merge_f046_f047_heads
4+
Revises: f046_knowledge_file_name_length, f047_assistant_knowledge_auth
5+
Create Date: 2026-07-17
6+
7+
The two schema changes landed concurrently from ``f045_dks_is_hidden``. This
8+
no-op revision rejoins both migration branches so deployments can continue to
9+
use the canonical ``alembic upgrade head`` command.
10+
"""
11+
12+
from collections.abc import Sequence
13+
from typing import Union
14+
15+
revision: str = "f048_merge_f046_f047_heads"
16+
down_revision: Union[str, Sequence[str], None] = (
17+
"f046_knowledge_file_name_length",
18+
"f047_assistant_knowledge_auth",
19+
)
20+
branch_labels: Union[str, Sequence[str], None] = None
21+
depends_on: Union[str, Sequence[str], None] = None
22+
23+
24+
def upgrade() -> None:
25+
pass
26+
27+
28+
def downgrade() -> None:
29+
pass

0 commit comments

Comments
 (0)