Asterisk - The Open Source Telephony Project GIT-master-115d7c0
e2f04d309071_add_wrapuptime_to_queue_members.py
Go to the documentation of this file.
1"""add wrapuptime to queue_members
2
3Revision ID: e2f04d309071
4Revises: 041c0d3d1857
5Create Date: 2017-12-07 08:32:45.360857
6
7"""
8
9# revision identifiers, used by Alembic.
10revision = 'e2f04d309071'
11down_revision = '041c0d3d1857'
12
13from alembic import op
14import sqlalchemy as sa
15
16
17def upgrade():
18 op.add_column('queue_members', sa.Column('wrapuptime', sa.Integer))
19
20
22 op.drop_column('queue_members', 'wrapuptime')