Blame view
elasticity/migrations/0015_auto_20170206_2227.py
554 Bytes
8146dcf82 first commit |
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-06 22:27 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('elasticity', '0014_elasticity_state'), ] operations = [ migrations.AlterField( model_name='elasticity', name='state', field=models.CharField(choices=[('running', 'running'), ('stopped', 'stopped')], default='stopped', max_length=20, verbose_name='State'), ), ] |