forked from uncloud/uncloud
028fd6789f
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
23 lines
588 B
Python
23 lines
588 B
Python
# Generated by Django 3.0.3 on 2020-02-29 15:59
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('uncloud_vm', '0006_auto_20200229_1545'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='vmdiskimageproduct',
|
|
name='import_url',
|
|
field=models.URLField(blank=True, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='vmdiskimageproduct',
|
|
name='size_in_gb',
|
|
field=models.FloatField(blank=True, null=True),
|
|
),
|
|
]
|