summaryrefslogtreecommitdiff
path: root/contrib/ast-db-manage/config/versions/5813202e92be_add_contact_expiration_check_interval_.py
blob: 2c61f2b9dc8a16605105b1d8b482af8c253090ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""Add contact_expiration_check_interval to ps_globals

Revision ID: 5813202e92be
Revises: 3bcc0b5bc2c9
Create Date: 2016-03-08 21:52:21.372310

"""

# revision identifiers, used by Alembic.
revision = '5813202e92be'
down_revision = '3bcc0b5bc2c9'

from alembic import op
import sqlalchemy as sa

def upgrade():
    op.add_column('ps_globals', sa.Column('contact_expiration_check_interval', sa.Integer))

def downgrade():
    with op.batch_alter_table('ps_globals') as batch_op:
        batch_op.drop_column('contact_expiration_check_interval')