Asterisk - The Open Source Telephony Project GIT-master-115d7c0
28ce1e718f05_add_fatal_response_interval.py
Go to the documentation of this file.
1"""add fatal_response_interval
2
3Revision ID: 28ce1e718f05
4Revises: 154177371065
5Create Date: 2015-10-20 17:57:45.560585
6
7"""
8
9# revision identifiers, used by Alembic.
10revision = '28ce1e718f05'
11down_revision = '154177371065'
12
13from alembic import op
14import sqlalchemy as sa
15
16
17def upgrade():
18 op.add_column('ps_registrations', sa.Column('fatal_retry_interval', sa.Integer))
19
20
22 op.drop_column('ps_registrations', 'fatal_retry_interval')