Asterisk - The Open Source Telephony Project GIT-master-f36a736
655054a68ad5_add_pjsip_tenantid.py
Go to the documentation of this file.
1"""add pjsip tenantid
2
3Revision ID: 655054a68ad5
4Revises: 2b7c507d7d12
5Create Date: 2024-06-11 11:18:41.466929
6
7"""
8
9# revision identifiers, used by Alembic.
10revision = '655054a68ad5'
11down_revision = '2b7c507d7d12'
12
13from alembic import op
14import sqlalchemy as sa
15
16
17def upgrade():
18 op.add_column('ps_endpoints', sa.Column('tenantid', sa.String(80)))
19
20
22 op.drop_column('ps_endpoints', 'tenantid')