Asterisk - The Open Source Telephony Project GIT-master-abe0018
4a6c67fa9b7a_add_fax_detect_timeout_option.py
Go to the documentation of this file.
1"""add fax_detect_timeout option
2
3Revision ID: 4a6c67fa9b7a
4Revises: 9deac0ae4717
5Create Date: 2016-07-18 18:20:44.249491
6
7"""
8
9# revision identifiers, used by Alembic.
10revision = '4a6c67fa9b7a'
11down_revision = '9deac0ae4717'
12
13from alembic import op
14import sqlalchemy as sa
15
16
17def upgrade():
18 op.add_column('ps_endpoints', sa.Column('fax_detect_timeout', sa.Integer))
19
20
22 op.drop_column('ps_endpoints', 'fax_detect_timeout')