Merge pull request #822 from coreos-inc/phase2-11-07-2015

Phase2 11 07 2015
This commit is contained in:
Jake Moshenko 2015-11-08 13:21:59 -05:00
commit b526e2a3cd
6 changed files with 283 additions and 32 deletions

View file

@ -0,0 +1,21 @@
"""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
from util.migrate.backfill_parent_id import backfill_parent_id
def upgrade(tables):
backfill_parent_id()
backfill_checksums()
def downgrade(tables):
pass