Merge "alembic: fix erroneous commit for add_prune_on_boot"

This commit is contained in:
Jenkins2
2017-09-06 10:55:35 -05:00
committed by Gerrit Code Review

View File

@@ -12,7 +12,10 @@ down_revision = '44ccced114ce'
from alembic import op
import sqlalchemy as sa
from sqlalchemy.dialects.postgresql import ENUM
YESNO_NAME = 'yesno_values'
YESNO_VALUES = ['yes', 'no']
def upgrade():
############################# Enums ##############################