mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 03:20:57 +00:00
23 lines
418 B
Python
23 lines
418 B
Python
"""add pjsip tenantid
|
|
|
|
Revision ID: 655054a68ad5
|
|
Revises: 2b7c507d7d12
|
|
Create Date: 2024-06-11 11:18:41.466929
|
|
|
|
"""
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '655054a68ad5'
|
|
down_revision = '2b7c507d7d12'
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
def upgrade():
|
|
op.add_column('ps_endpoints', sa.Column('tenantid', sa.String(80)))
|
|
|
|
|
|
def downgrade():
|
|
op.drop_column('ps_endpoints', 'tenantid')
|