pjsip_add_use_callerid_contact: fixed alembic script

Change-Id: I413f1583c797fb79651786cd8d0b003599f8ed10
This commit is contained in:
Kevin Harwell 2018-12-03 17:45:57 -06:00
parent 8f5df046f6
commit cbb7633ad3
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ def upgrade():
# type to get around "already created" issue - works okay with mysql
ast_bool_values = ENUM(*AST_BOOL_VALUES, name=AST_BOOL_NAME, create_type=False)
op.add_column('ps_globals', sa.Column('use_callerid_contact', yesno_values))
op.add_column('ps_globals', sa.Column('use_callerid_contact', ast_bool_values))
def downgrade():