alembic: increase uri column size

When mobile SIP clients register with Asterisk that use some sort of
push notifications, the URI can get quite lengthy due to the
additional push-service annotations (things like tokens, pn-type, etc.)
contained in it.

ASTERISK-28022 #close

Change-Id: I6c55013bafe79f7e7a1fb6722d2558f553709f2e
(cherry picked from commit 595e358761)
16.0
Florian Floimair 7 years ago committed by Kevin Harwell
parent 8694556e24
commit b98e2e06a4

@ -0,0 +1,22 @@
"""Increase uri column size
Revision ID: 1d3ed26d9978
Revises: 19b00bc19b7b
Create Date: 2018-08-23 11:46:13.283801
"""
# revision identifiers, used by Alembic.
revision = '1d3ed26d9978'
down_revision = '19b00bc19b7b'
from alembic import op
import sqlalchemy as sa
def upgrade():
op.alter_column('ps_contacts', 'uri', type_=sa.String(511))
def downgrade():
op.alter_column('ps_contacts', 'uri', type_=sa.String(255))
Loading…
Cancel
Save