forked from uncloud/uncloud
19 lines
527 B
Python
19 lines
527 B
Python
|
# Generated by Django 3.0.3 on 2020-02-28 13:44
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('uncloud_vm', '0006_merge_20200228_1303'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='vmproduct',
|
||
|
name='status',
|
||
|
field=models.CharField(choices=[('pending', 'Pending'), ('being_created', 'Being created'), ('active', 'Active'), ('deleted', 'Deleted')], default='pending', max_length=256),
|
||
|
),
|
||
|
]
|