Skip to content
Snippets Groups Projects
Commit a133c5cc authored by Florian Floimair's avatar Florian Floimair
Browse files

alembic: fix erroneous commit for add_prune_on_boot

Added include for postgresql ENUM type and
redefined values in the same way as in the
other migration scripts.

ASTERISK-27254 #close

Change-Id: Id667304cdf3891b1c2f7d35fab3e2a84026159fa
parent f556c31a
No related branches found
No related tags found
No related merge requests found
......@@ -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 ##############################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment