Asterisk - The Open Source Telephony Project GIT-master-f36a736
Functions | Variables
1d0e332c32af_create_rls_table Namespace Reference

Functions

def downgrade ()
 
def upgrade ()
 

Variables

string down_revision = '2da192dbbc65'
 
string revision = '1d0e332c32af'
 
string YESNO_NAME = 'yesno_values'
 
list YESNO_VALUES = ['yes', 'no']
 

Function Documentation

◆ downgrade()

def downgrade ( )

Definition at line 38 of file 1d0e332c32af_create_rls_table.py.

38def downgrade():
39 op.drop_table('ps_resource_list')

◆ upgrade()

def upgrade ( )

Definition at line 20 of file 1d0e332c32af_create_rls_table.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.create_table(
28 'ps_resource_list',
29 sa.Column('id', sa.String(40), nullable=False, unique=True),
30 sa.Column('list_item', sa.String(2048)),
31 sa.Column('event', sa.String(40)),
32 sa.Column('full_state', yesno_values),
33 sa.Column('notification_batch_interval', sa.Integer),
34 )
35
36 op.create_index('ps_resource_list_id', 'ps_resource_list', ['id'])
37

Variable Documentation

◆ down_revision

string down_revision = '2da192dbbc65'

Definition at line 11 of file 1d0e332c32af_create_rls_table.py.

◆ revision

string revision = '1d0e332c32af'

Definition at line 10 of file 1d0e332c32af_create_rls_table.py.

◆ YESNO_NAME

string YESNO_NAME = 'yesno_values'

Definition at line 17 of file 1d0e332c32af_create_rls_table.py.

◆ YESNO_VALUES

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

Definition at line 18 of file 1d0e332c32af_create_rls_table.py.