Asterisk - The Open Source Telephony Project  18.5.0
Functions | Variables
041c0d3d1857_add_dtls_auto_gen_cert Namespace Reference

Functions

def downgrade ()
 
def upgrade ()
 

Variables

string down_revision = 'de83fac997e2'
 
string revision = '041c0d3d1857'
 
string YESNO_NAME = 'yesno_values'
 
list YESNO_VALUES = ['yes', 'no']
 

Function Documentation

◆ downgrade()

def 041c0d3d1857_add_dtls_auto_gen_cert.downgrade ( )

Definition at line 30 of file 041c0d3d1857_add_dtls_auto_gen_cert.py.

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

◆ upgrade()

def 041c0d3d1857_add_dtls_auto_gen_cert.upgrade ( )

Definition at line 20 of file 041c0d3d1857_add_dtls_auto_gen_cert.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('dtls_auto_generate_cert', yesno_values))
28 
29 

Variable Documentation

◆ down_revision

string down_revision = 'de83fac997e2'

Definition at line 11 of file 041c0d3d1857_add_dtls_auto_gen_cert.py.

◆ revision

string revision = '041c0d3d1857'

Definition at line 10 of file 041c0d3d1857_add_dtls_auto_gen_cert.py.

◆ YESNO_NAME

string YESNO_NAME = 'yesno_values'

Definition at line 17 of file 041c0d3d1857_add_dtls_auto_gen_cert.py.

◆ YESNO_VALUES

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

Definition at line 18 of file 041c0d3d1857_add_dtls_auto_gen_cert.py.