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
This commit is contained in:
Florian Floimair 2018-08-23 13:57:31 +02:00
parent 59f53514ce
commit 595e358761
1 changed files with 22 additions and 0 deletions

View File

@ -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))