Asterisk - The Open Source Telephony Project GIT-master-115d7c0
c20d6e3992f4_add_allow_unauthenticated_options.py
Go to the documentation of this file.
1"""add allow_unauthenticated_options
2
3Revision ID: c20d6e3992f4
4Revises: 8915fcc5766f
5Create Date: 2021-04-23 13:44:38.296558
6
7"""
8
9# revision identifiers, used by Alembic.
10revision = 'c20d6e3992f4'
11down_revision = '8915fcc5766f'
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('allow_unauthenticated_options', ast_bool_values))
26
28 op.drop_column('ps_endpoints', 'allow_unauthenticated_options')
29 pass