summaryrefslogtreecommitdiff
path: root/migrations/versions/5cee97aab219_.py
blob: 6c1a16b048b26c142489ff1b09e78deeb33f592b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"""add date of last virus scan

Revision ID: 5cee97aab219
Revises: e2e816056589
Create Date: 2022-12-10 16:39:56.388259

"""

# revision identifiers, used by Alembic.
revision = '5cee97aab219'
down_revision = 'e2e816056589'

from alembic import op
import sqlalchemy as sa


def upgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.add_column('file', sa.Column('last_vscan', sa.DateTime(), nullable=True))
    # ### end Alembic commands ###


def downgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.drop_column('file', 'last_vscan')
    # ### end Alembic commands ###