Asterisk - The Open Source Telephony Project GIT-master-f36a736
Functions | Variables
2bb1a85135ad_pjsip_add_use_callerid_contact Namespace Reference

Functions

def downgrade ()
 
def upgrade ()
 

Variables

string AST_BOOL_NAME = 'ast_bool_values'
 
list AST_BOOL_VALUES
 
string down_revision = '465f47f880be'
 
string revision = '2bb1a85135ad'
 

Function Documentation

◆ downgrade()

def downgrade ( )

Definition at line 36 of file 2bb1a85135ad_pjsip_add_use_callerid_contact.py.

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

◆ upgrade()

def upgrade ( )

Definition at line 26 of file 2bb1a85135ad_pjsip_add_use_callerid_contact.py.

26def 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_globals', sa.Column('use_callerid_contact', ast_bool_values))
34
35

Variable Documentation

◆ AST_BOOL_NAME

string AST_BOOL_NAME = 'ast_bool_values'

◆ 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 2bb1a85135ad_pjsip_add_use_callerid_contact.py.

◆ down_revision

string down_revision = '465f47f880be'

◆ revision

string revision = '2bb1a85135ad'