Asterisk - The Open Source Telephony Project
18.5.0
contrib
ast-db-manage
config
versions
c20d6e3992f4_add_allow_unauthenticated_options.py
Go to the documentation of this file.
1
"""add allow_unauthenticated_options
2
3
Revision ID: c20d6e3992f4
4
Revises: 8915fcc5766f
5
Create Date: 2021-04-23 13:44:38.296558
6
7
"""
8
9
# revision identifiers, used by Alembic.
10
revision =
'c20d6e3992f4'
11
down_revision =
'8915fcc5766f'
12
13
from
alembic
import
op
14
import
sqlalchemy
as
sa
15
from
sqlalchemy.dialects.postgresql
import
ENUM
16
17
AST_BOOL_NAME =
'ast_bool_values'
18
AST_BOOL_VALUES = [
'0'
,
'1'
,
19
'off'
,
'on'
,
20
'false'
,
'true'
,
21
'no'
,
'yes'
]
22
23
def
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
27
def
downgrade
():
28
op.drop_column(
'ps_endpoints'
,
'allow_unauthenticated_options'
)
29
pass
c20d6e3992f4_add_allow_unauthenticated_options.downgrade
def downgrade()
Definition:
c20d6e3992f4_add_allow_unauthenticated_options.py:27
c20d6e3992f4_add_allow_unauthenticated_options.upgrade
def upgrade()
Definition:
c20d6e3992f4_add_allow_unauthenticated_options.py:23
Generated on Sun Aug 8 2021 19:43:09 for Asterisk - The Open Source Telephony Project by
1.8.13