Asterisk - The Open Source Telephony Project GIT-master-f36a736
4f91fc18c979_add_suppress_moh_on_sendonly.py
Go to the documentation of this file.
1"""Add suppress_moh_on_sendonly
2
3Revision ID: 4f91fc18c979
4Revises: 801b9fced8b7
5Create Date: 2024-11-05 11:37:33.604448
6
7"""
8
9# revision identifiers, used by Alembic.
10revision = '4f91fc18c979'
11down_revision = '801b9fced8b7'
12
13from alembic import op
14import sqlalchemy as sa
15from sqlalchemy.dialects.postgresql import ENUM
16
17AST_BOOL_NAME = 'ast_bool_values'
18AST_BOOL_VALUES = [ '0', '1',
19 'off', 'on',
20 'false', 'true',
21 'no', 'yes' ]
22
23def upgrade():
24 ast_bool_values = ENUM(*AST_BOOL_VALUES, name=AST_BOOL_NAME, create_type=False)
25 op.add_column('ps_endpoints', sa.Column('suppress_moh_on_sendonly', ast_bool_values))
26
28 if op.get_context().bind.dialect.name == 'mssql':
29 op.drop_constraint('ck_ps_endpoints_suppress_moh_on_sendonly_ast_bool_values', 'ps_endpoints')
30 op.drop_column('ps_endpoints', 'suppress_moh_on_sendonly')