Asterisk - The Open Source Telephony Project  18.5.0
Functions | Variables
51f8cb66540e_add_further_dtls_options Namespace Reference

Functions

def downgrade ()
 
def upgrade ()
 

Variables

string down_revision = 'c6d929b23a8'
 
string revision = '51f8cb66540e'
 
string YESNO_NAME = 'yesno_values'
 
list YESNO_VALUES = ['yes', 'no']
 

Function Documentation

◆ downgrade()

def 51f8cb66540e_add_further_dtls_options.downgrade ( )

Definition at line 30 of file 51f8cb66540e_add_further_dtls_options.py.

30 def downgrade():
31  if op.get_context().bind.dialect.name == 'mssql':
32  op.drop_constraint('ck_ps_endpoints_force_avp_yesno_values', 'ps_endpoints')
33  op.drop_constraint('ck_ps_endpoints_media_use_received_transport_yesno_values', 'ps_endpoints')
34  op.drop_column('ps_endpoints', 'force_avp')
35  op.drop_column('ps_endpoints', 'media_use_received_transport')

◆ upgrade()

def 51f8cb66540e_add_further_dtls_options.upgrade ( )

Definition at line 20 of file 51f8cb66540e_add_further_dtls_options.py.

20 def 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('force_avp', yesno_values))
28  op.add_column('ps_endpoints', sa.Column('media_use_received_transport', yesno_values))
29 

Variable Documentation

◆ down_revision

string down_revision = 'c6d929b23a8'

Definition at line 11 of file 51f8cb66540e_add_further_dtls_options.py.

◆ revision

string revision = '51f8cb66540e'

Definition at line 10 of file 51f8cb66540e_add_further_dtls_options.py.

◆ YESNO_NAME

string YESNO_NAME = 'yesno_values'

Definition at line 17 of file 51f8cb66540e_add_further_dtls_options.py.

◆ YESNO_VALUES

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

Definition at line 18 of file 51f8cb66540e_add_further_dtls_options.py.