30 lines
730 B
Python
30 lines
730 B
Python
|
|
"""Merge zerotier + CA/sudo/api-key branches.
|
||
|
|
|
||
|
|
Revision ID: 022_add_command_events
|
||
|
|
Revises: 020_zerotier, 021_merge_heads
|
||
|
|
Create Date: 2026-03-09
|
||
|
|
|
||
|
|
Pure merge-point for 020_zerotier and 021_merge_heads.
|
||
|
|
Revision ID kept as-is for compatibility with production databases that
|
||
|
|
already have '022_add_command_events' stamped in alembic_version.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from alembic import op
|
||
|
|
|
||
|
|
|
||
|
|
# ---------------------------------------------------------------------------
|
||
|
|
# revision identifiers
|
||
|
|
# ---------------------------------------------------------------------------
|
||
|
|
revision = "022_add_command_events"
|
||
|
|
down_revision = ("020_zerotier", "021_merge_heads")
|
||
|
|
branch_labels = None
|
||
|
|
depends_on = None
|
||
|
|
|
||
|
|
|
||
|
|
def upgrade():
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
def downgrade():
|
||
|
|
pass
|