Compare commits

...

1 Commits

Author SHA1 Message Date
sadpandajoe
594a9e934f fix(migrations): replace placeholder revision ID in granular export migration
The migration added in #38361 used a placeholder Alembic revision ID
(a1b2c3d4e5f6) instead of a properly generated one. Replace it with a
real random hex ID and update the downstream migration's down_revision.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-15 00:05:57 +00:00
2 changed files with 3 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ logger = logging.getLogger("alembic.env")
# revision identifiers, used by Alembic.
revision = "ce6bd21901ab"
down_revision = "a1b2c3d4e5f6"
down_revision = "41292324bf4e"
DECKGL_VIZ_TYPES = [
"deck_arc",

View File

@@ -16,14 +16,14 @@
# under the License.
"""add granular export permissions
Revision ID: a1b2c3d4e5f6
Revision ID: 41292324bf4e
Revises: 4b2a8c9d3e1f
Create Date: 2026-03-02 12:00:00.000000
"""
# revision identifiers, used by Alembic.
revision = "a1b2c3d4e5f6"
revision = "41292324bf4e"
down_revision = "4b2a8c9d3e1f"
from alembic import op # noqa: E402