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

Functions

def downgrade ()
 
def upgrade ()
 

Variables

string down_revision = '20abce6d1e3c'
 
string revision = 'de83fac997e2'
 
string YESNO_NAME = 'yesno_values'
 
list YESNO_VALUES = ['yes', 'no']
 

Detailed Description

add bundle to ps_endpoints

Revision ID: de83fac997e2
Revises: 20abce6d1e3c
Create Date: 2017-10-24 17:10:57.242020

Function Documentation

◆ downgrade()

def de83fac997e2_add_bundle_to_ps_endpoints.downgrade ( )

Definition at line 29 of file de83fac997e2_add_bundle_to_ps_endpoints.py.

29 def downgrade():
30  context = op.get_context()
31 
32  if context.bind.dialect.name == 'mssql':
33  op.drop_constraint('ck_ps_endpoints_bundle_yesno_values', 'ps_endpoints')
34  op.drop_column('ps_endpoints', 'bundle')

◆ upgrade()

def de83fac997e2_add_bundle_to_ps_endpoints.upgrade ( )

Definition at line 20 of file de83fac997e2_add_bundle_to_ps_endpoints.py.

20 def 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_endpoints', sa.Column('bundle', yesno_values))
28 

Variable Documentation

◆ down_revision

string down_revision = '20abce6d1e3c'

Definition at line 11 of file de83fac997e2_add_bundle_to_ps_endpoints.py.

◆ revision

string revision = 'de83fac997e2'

Definition at line 10 of file de83fac997e2_add_bundle_to_ps_endpoints.py.

◆ YESNO_NAME

string YESNO_NAME = 'yesno_values'

Definition at line 17 of file de83fac997e2_add_bundle_to_ps_endpoints.py.

◆ YESNO_VALUES

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

Definition at line 18 of file de83fac997e2_add_bundle_to_ps_endpoints.py.