Asterisk - The Open Source Telephony Project GIT-master-f36a736
Functions | Variables
4468b4a91372_add_pjsip_asymmetric_rtp_codec Namespace Reference

Functions

def downgrade ()
 
def upgrade ()
 

Variables

string down_revision = 'a6ef36f1309'
 
string revision = '4468b4a91372'
 
string YESNO_NAME = 'yesno_values'
 
list YESNO_VALUES = ['yes', 'no']
 

Function Documentation

◆ downgrade()

def downgrade ( )

Definition at line 30 of file 4468b4a91372_add_pjsip_asymmetric_rtp_codec.py.

30def downgrade():
31 if op.get_context().bind.dialect.name == 'mssql':
32 op.drop_constraint('ck_ps_endpoints_asymmetric_rtp_codec_yesno_values','ps_endpoints')
33 op.drop_column('ps_endpoints', 'asymmetric_rtp_codec')

◆ upgrade()

def upgrade ( )

Definition at line 20 of file 4468b4a91372_add_pjsip_asymmetric_rtp_codec.py.

20def upgrade():
21 ############################# Enums ##############################
22
23 # yesno_values have already been created, so use postgres enum object
24 # type to get around "already created" issue - works okay with mysql
25 yesno_values = ENUM(*YESNO_VALUES, name=YESNO_NAME, create_type=False)
26
27 op.add_column('ps_endpoints', sa.Column('asymmetric_rtp_codec', yesno_values))
28
29

Variable Documentation

◆ down_revision

string down_revision = 'a6ef36f1309'

◆ revision

string revision = '4468b4a91372'

◆ YESNO_NAME

string YESNO_NAME = 'yesno_values'

◆ YESNO_VALUES

list YESNO_VALUES = ['yes', 'no']