mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 20:20:07 +00:00
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: I08e17b37af5a446c36cc7d1f903861f81fd41cca
This commit is contained in:
@@ -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))
|
Reference in New Issue
Block a user