Asterisk - The Open Source Telephony Project GIT-master-abe0018
dbc44d5a908_add_missing_columns_to_sys_and_reg.py
Go to the documentation of this file.
1"""Add missing columns to system and registration
2
3Revision ID: dbc44d5a908
4Revises: 423f34ad36e2
5Create Date: 2016-02-03 13:15:15.083043
6
7"""
8
9# revision identifiers, used by Alembic.
10revision = 'dbc44d5a908'
11down_revision = '423f34ad36e2'
12
13from alembic import op
14import sqlalchemy as sa
15from sqlalchemy.dialects.postgresql import ENUM
16
17YESNO_NAME = 'yesno_values'
18YESNO_VALUES = ['yes', 'no']
19
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
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')