forked from uncloud/uncloud
028fd6789f
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
23 lines
906 B
Python
23 lines
906 B
Python
# Generated by Django 3.0.3 on 2020-02-29 16:11
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('uncloud_vm', '0007_auto_20200229_1559'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='vmdiskimageproduct',
|
|
name='status',
|
|
field=models.CharField(choices=[('pending', 'Pending'), ('creating', 'Creating'), ('active', 'Active'), ('disabled', 'Disabled'), ('unusable', 'Unusable'), ('deleted', 'Deleted')], default='pending', max_length=32),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='vmhost',
|
|
name='status',
|
|
field=models.CharField(choices=[('pending', 'Pending'), ('creating', 'Creating'), ('active', 'Active'), ('disabled', 'Disabled'), ('unusable', 'Unusable'), ('deleted', 'Deleted')], default='pending', max_length=32),
|
|
),
|
|
]
|