mirror of
https://github.com/furyhawk/agent_delta.git
synced 2026-07-21 02:05:36 +00:00
19 lines
320 B
Python
19 lines
320 B
Python
"""create organization tables — skipped (enable_teams=false or no SQL DB)
|
|
|
|
Revision ID: 0001_org
|
|
"""
|
|
# This migration is a no-op when enable_teams is false.
|
|
|
|
revision = "0001_org"
|
|
down_revision = "0000_users"
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
pass
|
|
|
|
|
|
def downgrade() -> None:
|
|
pass
|