Asterisk - The Open Source Telephony Project GIT-master-f36a736
Functions | Variables
28ab27a7826d_add_srv_lookups_to_identify Namespace Reference

Functions

def downgrade ()
 
def upgrade ()
 

Variables

string down_revision = '4468b4a91372'
 
string revision = '28ab27a7826d'
 
string YESNO_NAME = 'yesno_values'
 
list YESNO_VALUES = ['yes', 'no']
 

Function Documentation

◆ downgrade()

def downgrade ( )

Definition at line 30 of file 28ab27a7826d_add_srv_lookups_to_identify.py.

30def downgrade():
31 if op.get_context().bind.dialect.name == 'mssql':
32 op.drop_constraint('ck_ps_endpoint_id_ips_srv_lookups_yesno_values','ps_endpoint_id_ips')
33 op.drop_column('ps_endpoint_id_ips', 'srv_lookups')

◆ upgrade()

def upgrade ( )

Definition at line 20 of file 28ab27a7826d_add_srv_lookups_to_identify.py.

20def 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_endpoint_id_ips', sa.Column('srv_lookups', yesno_values))
28
29

Variable Documentation

◆ down_revision

string down_revision = '4468b4a91372'

Definition at line 11 of file 28ab27a7826d_add_srv_lookups_to_identify.py.

◆ revision

string revision = '28ab27a7826d'

Definition at line 10 of file 28ab27a7826d_add_srv_lookups_to_identify.py.

◆ YESNO_NAME

string YESNO_NAME = 'yesno_values'

Definition at line 17 of file 28ab27a7826d_add_srv_lookups_to_identify.py.

◆ YESNO_VALUES

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

Definition at line 18 of file 28ab27a7826d_add_srv_lookups_to_identify.py.