Asterisk - The Open Source Telephony Project GIT-master-abe0018
8f72185e437f_res_pjsip_pubsub_add_resource_list_.py
Go to the documentation of this file.
1"""res_pjsip_pubsub add resource_list option resource_display_name
2
3Revision ID: 8f72185e437f
4Revises: a06d8f8462d9
5Create Date: 2022-02-01 10:53:55.875438
6
7"""
8
9# revision identifiers, used by Alembic.
10revision = '8f72185e437f'
11down_revision = 'a06d8f8462d9'
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_resource_list', sa.Column('resource_display_name', ast_bool_values))
26
28 op.drop_column('ps_resource_list', 'resource_display_name')
29