Skip to content

Commit 4245790

Browse files
rusackasclaude
andcommitted
fix(migrations): merge report-retry-state/compare-chart merge revision with extension storage table head
CI on this branch was failing with "Multiple head revisions are present for given argument 'head'" because the branch's existing merge revision (0b99fc576740) didn't account for the extension storage table migration (e5f6a7b8c9d0), leaving two unmerged heads. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 758cde9 commit 4245790

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
"""merge report retry state columns merge with extension storage table
18+
19+
Revision ID: 0be4b8f436f2
20+
Revises: ('0b99fc576740', 'e5f6a7b8c9d0')
21+
Create Date: 2026-08-05 20:00:00.000000
22+
23+
"""
24+
25+
# revision identifiers, used by Alembic.
26+
revision = "0be4b8f436f2"
27+
down_revision = ("0b99fc576740", "e5f6a7b8c9d0")
28+
29+
30+
def upgrade():
31+
pass
32+
33+
34+
def downgrade():
35+
pass

0 commit comments

Comments
 (0)