Asterisk - The Open Source Telephony Project GIT-master-abe0018
45e3f47c6c44_add_pjsip_endpoint_identifier_order.py
Go to the documentation of this file.
1"""add pjsip endpoint_identifier_order
2
3Revision ID: 45e3f47c6c44
4Revises: 945b1098bdd
5Create Date: 2015-03-02 09:32:20.632015
6
7"""
8
9# revision identifiers, used by Alembic.
10revision = '45e3f47c6c44'
11down_revision = '945b1098bdd'
12
13from alembic import op
14import sqlalchemy as sa
15
16
17def upgrade():
18 op.add_column('ps_globals', sa.Column('endpoint_identifier_order', sa.String(40)))
19
21 op.drop_column('ps_globals', 'endpoint_identifier_order')