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

Functions

def downgrade ()
 
def upgrade ()
 

Variables

string AST_BOOL_NAME = 'ast_bool_values'
 
list AST_BOOL_VALUES
 
string down_revision = '417c0247fd7e'
 
string revision = 'ccf795ee535f'
 

Detailed Description

all_codecs_on_empty_reinvite

Revision ID: ccf795ee535f
Revises: 417c0247fd7e
Create Date: 2022-09-28 09:14:36.709781

Function Documentation

◆ downgrade()

def downgrade ( )

Definition at line 34 of file ccf795ee535f_all_codecs_on_empty_reinvite.py.

34def downgrade():
35 if op.get_context().bind.dialect.name == 'mssql':
36 op.drop_constraint('ck_ps_globals_all_codecs_on_empty_reinvite_ast_bool_values', 'ps_globals')
37 op.drop_column('ps_globals', 'all_codecs_on_empty_reinvite')

◆ upgrade()

def upgrade ( )

Definition at line 25 of file ccf795ee535f_all_codecs_on_empty_reinvite.py.

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

Variable Documentation

◆ AST_BOOL_NAME

string AST_BOOL_NAME = 'ast_bool_values'

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

◆ down_revision

string down_revision = '417c0247fd7e'

Definition at line 11 of file ccf795ee535f_all_codecs_on_empty_reinvite.py.

◆ revision

string revision = 'ccf795ee535f'

Definition at line 10 of file ccf795ee535f_all_codecs_on_empty_reinvite.py.