mirror of https://github.com/asterisk/asterisk
commit
f7f3ae1815
@ -0,0 +1,22 @@
|
|||||||
|
"""Add RTP keepalive
|
||||||
|
|
||||||
|
Revision ID: 498357a710ae
|
||||||
|
Revises: 28b8e71e541f
|
||||||
|
Create Date: 2015-07-10 16:42:12.244421
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
# revision identifiers, used by Alembic.
|
||||||
|
revision = '498357a710ae'
|
||||||
|
down_revision = '28b8e71e541f'
|
||||||
|
|
||||||
|
from alembic import op
|
||||||
|
import sqlalchemy as sa
|
||||||
|
|
||||||
|
|
||||||
|
def upgrade():
|
||||||
|
op.add_column('ps_endpoints', sa.Column('rtp_keepalive', sa.Integer))
|
||||||
|
|
||||||
|
|
||||||
|
def downgrade():
|
||||||
|
op.drop_column('ps_endpoints', 'rtp_keepalive')
|
Loading…
Reference in new issue