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