Asterisk - The Open Source Telephony Project  18.5.0
Functions | Variables
79290b511e4b_pjsip_add_disable_rport Namespace Reference

Functions

def downgrade ()
 
def upgrade ()
 

Variables

string AST_BOOL_NAME = 'ast_bool_values'
 
list AST_BOOL_VALUES
 
string down_revision = 'fbb7766f17bc'
 
string revision = '79290b511e4b'
 

Function Documentation

◆ downgrade()

def 79290b511e4b_pjsip_add_disable_rport.downgrade ( )

Definition at line 36 of file 79290b511e4b_pjsip_add_disable_rport.py.

36 def downgrade():
37  if op.get_context().bind.dialect.name == 'mssql':
38  op.drop_constraint('ck_ps_systems_disable_rport_ast_bool_values','ps_systems')
39  op.drop_column('ps_systems', 'disable_rport')

◆ upgrade()

def 79290b511e4b_pjsip_add_disable_rport.upgrade ( )

Definition at line 26 of file 79290b511e4b_pjsip_add_disable_rport.py.

26 def upgrade():
27  ############################# Enums ##############################
28 
29  # ast_bool_values has already been created, so use postgres enum object
30  # type to get around "already created" issue - works okay with mysql
31  ast_bool_values = ENUM(*AST_BOOL_VALUES, name=AST_BOOL_NAME, create_type=False)
32 
33  op.add_column('ps_systems', sa.Column('disable_rport', ast_bool_values))
34 
35 

Variable Documentation

◆ AST_BOOL_NAME

string AST_BOOL_NAME = 'ast_bool_values'

Definition at line 17 of file 79290b511e4b_pjsip_add_disable_rport.py.

◆ AST_BOOL_VALUES

list AST_BOOL_VALUES
Initial value:
1 = [ '0', '1',
2  'off', 'on',
3  'false', 'true',
4  'no', 'yes' ]

Definition at line 20 of file 79290b511e4b_pjsip_add_disable_rport.py.

◆ down_revision

string down_revision = 'fbb7766f17bc'

Definition at line 11 of file 79290b511e4b_pjsip_add_disable_rport.py.

◆ revision

string revision = '79290b511e4b'

Definition at line 10 of file 79290b511e4b_pjsip_add_disable_rport.py.