Asterisk - The Open Source Telephony Project
18.5.0
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
a
b
c
d
e
f
g
i
l
m
n
o
p
q
r
s
t
u
v
w
y
+
Functions
b
c
d
e
f
g
i
l
m
n
p
r
s
t
u
v
w
+
Variables
a
b
c
d
e
f
i
l
m
n
o
p
q
r
s
t
w
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
c
d
e
f
g
h
i
k
l
m
n
p
r
s
t
u
v
w
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
Properties
+
Files
File List
+
Globals
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
z
+
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Macros
Modules
Pages
contrib
ast-db-manage
config
versions
e2f04d309071_add_wrapuptime_to_queue_members.py
Go to the documentation of this file.
1
"""add wrapuptime to queue_members
2
3
Revision ID: e2f04d309071
4
Revises: 041c0d3d1857
5
Create Date: 2017-12-07 08:32:45.360857
6
7
"""
8
9
# revision identifiers, used by Alembic.
10
revision =
'e2f04d309071'
11
down_revision =
'041c0d3d1857'
12
13
from
alembic
import
op
14
import
sqlalchemy
as
sa
15
16
17
def
upgrade
():
18
op.add_column(
'queue_members'
, sa.Column(
'wrapuptime'
, sa.Integer))
19
20
21
def
downgrade
():
22
op.drop_column(
'queue_members'
,
'wrapuptime'
)
e2f04d309071_add_wrapuptime_to_queue_members.upgrade
def upgrade()
Definition:
e2f04d309071_add_wrapuptime_to_queue_members.py:17
e2f04d309071_add_wrapuptime_to_queue_members.downgrade
def downgrade()
Definition:
e2f04d309071_add_wrapuptime_to_queue_members.py:21
Generated on Sun Aug 8 2021 19:43:43 for Asterisk - The Open Source Telephony Project by
1.8.13