From: Richard Mudgett Date: Fri, 27 Mar 2015 17:58:16 +0000 (+0000) Subject: Add missing file. ASTERISK-24781 X-Git-Tag: 14.0.0-beta1~1151 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb1c639817ddd48b7b623f55c3412b90cb407959;p=thirdparty%2Fasterisk.git Add missing file. ASTERISK-24781 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@433597 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/contrib/ast-db-manage/config/versions/23530d604b96_add_rpid_immediate.py b/contrib/ast-db-manage/config/versions/23530d604b96_add_rpid_immediate.py new file mode 100755 index 0000000000..dc0c01c24c --- /dev/null +++ b/contrib/ast-db-manage/config/versions/23530d604b96_add_rpid_immediate.py @@ -0,0 +1,48 @@ +# +# Asterisk -- An open source telephony toolkit. +# +# Copyright (C) 2015, Richard Mudgett +# +# Richard Mudgett +# +# See http://www.asterisk.org for more information about +# the Asterisk project. Please do not directly contact +# any of the maintainers of this project for assistance; +# the project provides a web site, mailing lists and IRC +# channels for your use. +# +# This program is free software, distributed under the terms of +# the GNU General Public License Version 2. See the LICENSE file +# at the top of the source tree. +# + +"""add rpid_immediate + +Revision ID: 23530d604b96 +Revises: 45e3f47c6c44 +Create Date: 2015-03-18 17:41:58.055412 + +""" + +# revision identifiers, used by Alembic. +revision = '23530d604b96' +down_revision = '45e3f47c6c44' + +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects.postgresql import ENUM + +YESNO_NAME = 'yesno_values' +YESNO_VALUES = ['yes', 'no'] + +def upgrade(): + ############################# Enums ############################## + + # yesno_values have already been created, so use postgres enum object + # type to get around "already created" issue - works okay with mysql + yesno_values = ENUM(*YESNO_VALUES, name=YESNO_NAME, create_type=False) + + op.add_column('ps_endpoints', sa.Column('rpid_immediate', yesno_values)) + +def downgrade(): + op.drop_column('ps_endpoints', 'rpid_immediate')