0016_auto_20170211_0846.py 678 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-02-11 08:46
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('elasticity', '0015_auto_20170206_2227'),
]

operations = [
migrations.AlterField(
model_name='elasticity',
name='decision_policy',
field=models.CharField(choices=[('probbexact', 'ORadv'), ('noprob', 'OR'), ('rf', 'BRsimple'), ('raf', 'BRecon'), ('probe', 'BR-BRecon'), ('probb', 'BR-BPstab'), ('probq', 'BR-BPqual')], default='rf', max_length=300, verbose_name='Decision Policy'),
),
]