Asterisk - The Open Source Telephony Project  18.5.0
Functions | Variables
3a094a18e75b_pjsip_add_norefersub Namespace Reference

Functions

def downgrade ()
 
def upgrade ()
 

Variables

string AST_BOOL_NAME = 'ast_bool_values'
 
list AST_BOOL_VALUES
 
string down_revision = '80473bad3c16'
 
string revision = '3a094a18e75b'
 

Function Documentation

◆ downgrade()

def 3a094a18e75b_pjsip_add_norefersub.downgrade ( )

Definition at line 36 of file 3a094a18e75b_pjsip_add_norefersub.py.

36 def downgrade():
37  if op.get_context().bind.dialect.name == 'mssql':
38  op.drop_constraint('ck_ps_globals_norefersub_ast_bool_values', 'ps_globals')
39  op.drop_column('ps_globals', 'norefersub')

◆ upgrade()

def 3a094a18e75b_pjsip_add_norefersub.upgrade ( )

Definition at line 26 of file 3a094a18e75b_pjsip_add_norefersub.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=True)
32 
33  op.add_column('ps_globals', sa.Column('norefersub', ast_bool_values))
34 
35 

Variable Documentation

◆ AST_BOOL_NAME

string AST_BOOL_NAME = 'ast_bool_values'

Definition at line 17 of file 3a094a18e75b_pjsip_add_norefersub.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 3a094a18e75b_pjsip_add_norefersub.py.

◆ down_revision

string down_revision = '80473bad3c16'

Definition at line 11 of file 3a094a18e75b_pjsip_add_norefersub.py.

◆ revision

string revision = '3a094a18e75b'

Definition at line 10 of file 3a094a18e75b_pjsip_add_norefersub.py.