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

Functions

def downgrade ()
 
def upgrade ()
 

Variables

string down_revision = '423f34ad36e2'
 
string revision = 'dbc44d5a908'
 
string YESNO_NAME = 'yesno_values'
 
list YESNO_VALUES = ['yes', 'no']
 

Detailed Description

Add missing columns to system and registration

Revision ID: dbc44d5a908
Revises: 423f34ad36e2
Create Date: 2016-02-03 13:15:15.083043

Function Documentation

◆ downgrade()

def downgrade ( )

Definition at line 31 of file dbc44d5a908_add_missing_columns_to_sys_and_reg.py.

31def downgrade():
32 if op.get_context().bind.dialect.name == 'mssql':
33 op.drop_constraint('ck_ps_systems_disable_tcp_switch_yesno_values','ps_systems')
34 op.drop_constraint('ck_ps_registrations_line_yesno_values','ps_registrations')
35 op.drop_column('ps_systems', 'disable_tcp_switch')
36 op.drop_column('ps_registrations', 'line')
37 op.drop_column('ps_registrations', 'endpoint')

◆ upgrade()

def upgrade ( )

Definition at line 20 of file dbc44d5a908_add_missing_columns_to_sys_and_reg.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_systems', sa.Column('disable_tcp_switch', yesno_values))
28 op.add_column('ps_registrations', sa.Column('line', yesno_values))
29 op.add_column('ps_registrations', sa.Column('endpoint', sa.String(40)))
30

Variable Documentation

◆ down_revision

string down_revision = '423f34ad36e2'

◆ revision

string revision = 'dbc44d5a908'

◆ YESNO_NAME

string YESNO_NAME = 'yesno_values'

◆ YESNO_VALUES

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