Asterisk - The Open Source Telephony Project GIT-master-abe0018
189a235b3fd7_add_keep_alive_interval.py
Go to the documentation of this file.
1"""add_keep_alive_interval
2
3Revision ID: 189a235b3fd7
4Revises: 339a3bdf53fc
5Create Date: 2015-12-16 11:23:16.994523
6
7"""
8
9# revision identifiers, used by Alembic.
10revision = '189a235b3fd7'
11down_revision = '339a3bdf53fc'
12
13from alembic import op
14import sqlalchemy as sa
15
16
17def upgrade():
18 op.add_column('ps_globals', sa.Column('keep_alive_interval', sa.Integer))
19
20
22 op.drop_column('ps_globals', 'keep_alive_interval')