Remove migration (temporarily), fix a broken test, and make the aggregate size calculation use the entire image ancestry (for now).

This commit is contained in:
Joseph Schorr 2015-03-17 12:13:01 -04:00
parent b8d88c0f4e
commit 44ff85d044
3 changed files with 9 additions and 26 deletions

View file

@ -1,22 +0,0 @@
"""Backfill aggregate size columns
Revision ID: 87c29d0cd05
Revises: 2b2529fd23ff
Create Date: 2015-03-16 17:55:30.148557
"""
# revision identifiers, used by Alembic.
revision = '87c29d0cd05'
down_revision = '2b2529fd23ff'
from alembic import op
import sqlalchemy as sa
from util.backfill_aggregate_sizes import backfill_aggregate_sizes
def upgrade(tables):
backfill_aggregate_sizes()
def downgrade(tables):
pass