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

Functions

def downgrade ()
 
def upgrade ()
 

Variables

string AST_BOOL_NAME = 'ast_bool_values'
 
list AST_BOOL_VALUES
 
string down_revision = '1ae0609b6646'
 
string revision = 'e658c26033ca'
 

Detailed Description

create history info flag

Revision ID: e658c26033ca
Revises: 1ae0609b6646
Create Date: 2020-08-13 10:53:21.032591

Function Documentation

◆ downgrade()

def e658c26033ca_create_history_info_flag.downgrade ( )

Definition at line 35 of file e658c26033ca_create_history_info_flag.py.

35 def downgrade():
36  if op.get_context().bind.dialect.name == 'mssql':
37  op.drop_constraint('ck_ps_endpoints_send_history_info_ast_bool_values','ps_endpoints')
38  op.drop_column('ps_endpoints', 'send_history_info')

◆ upgrade()

def e658c26033ca_create_history_info_flag.upgrade ( )

Definition at line 25 of file e658c26033ca_create_history_info_flag.py.

25 def 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_endpoints', sa.Column('send_history_info', ast_bool_values))
33 
34 

Variable Documentation

◆ AST_BOOL_NAME

string AST_BOOL_NAME = 'ast_bool_values'

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

◆ down_revision

string down_revision = '1ae0609b6646'

Definition at line 11 of file e658c26033ca_create_history_info_flag.py.

◆ revision

string revision = 'e658c26033ca'

Definition at line 10 of file e658c26033ca_create_history_info_flag.py.