Asterisk - The Open Source Telephony Project GIT-master-abe0018
f261363a857f_add_overlap_context.py
Go to the documentation of this file.
1"""add overlap_context
2
3Revision ID: f261363a857f
4Revises: 5a2247c957d2
5Create Date: 2022-12-09 13:58:48.622000
6
7"""
8
9# revision identifiers, used by Alembic.
10revision = 'f261363a857f'
11down_revision = '5a2247c957d2'
12
13from alembic import op
14import sqlalchemy as sa
15
16
17def upgrade():
18 op.add_column('ps_endpoints', sa.Column('overlap_context', sa.String(80)))
19
21 op.drop_column('ps_endpoints', 'overlap_context')