Skip to content
Snippets Groups Projects
Commit cbb7633a authored by Kevin Harwell's avatar Kevin Harwell
Browse files

pjsip_add_use_callerid_contact: fixed alembic script

Change-Id: I413f1583c797fb79651786cd8d0b003599f8ed10
parent 8f5df046
No related branches found
No related tags found
No related merge requests found
......@@ -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():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment