Backfill the v1 checksums from imagestorage
This commit is contained in:
parent
0e4d749f89
commit
9036ca2f2f
4 changed files with 257 additions and 0 deletions
|
@ -0,0 +1,19 @@
|
|||
"""Backfill parent id and v1 checksums
|
||||
|
||||
Revision ID: 22af01f81722
|
||||
Revises: 2827d36939e4
|
||||
Create Date: 2015-11-05 16:24:43.679323
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '22af01f81722'
|
||||
down_revision = '2827d36939e4'
|
||||
|
||||
from util.migrate.backfill_v1_checksums import backfill_checksums
|
||||
|
||||
def upgrade(tables):
|
||||
backfill_checksums()
|
||||
|
||||
def downgrade(tables):
|
||||
pass
|
Reference in a new issue