prepare branch to be merged into phase1-11-07-2015
This removes the checksum backfill, removes the migration that runs the backfills, and defaults the security scan feature off.
This commit is contained in:
parent
af4511455f
commit
f3c3e684a1
4 changed files with 2 additions and 89 deletions
|
@ -1,21 +0,0 @@
|
|||
"""backfill parent ids and checksums
|
||||
Revision ID: 2fb9492c20cc
|
||||
Revises: 57dad559ff2d
|
||||
Create Date: 2015-07-14 17:38:47.397963
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '2fb9492c20cc'
|
||||
down_revision = '57dad559ff2d'
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
from util.migrate.backfill_parent_id import backfill_parent_id
|
||||
from util.migrate.backfill_checksums import backfill_checksums
|
||||
|
||||
def upgrade(tables):
|
||||
backfill_parent_id()
|
||||
backfill_checksums()
|
||||
|
||||
def downgrade(tables):
|
||||
pass
|
|
@ -8,7 +8,7 @@ Create Date: 2015-10-13 18:03:14.859839
|
|||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '50925110da8c'
|
||||
down_revision = '2fb9492c20cc'
|
||||
down_revision = '57dad559ff2d'
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
|
Reference in a new issue