mirror of
https://github.com/retspen/webvirtcloud
synced 2025-02-15 17:05:17 +00:00
17 lines
338 B
Python
17 lines
338 B
Python
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('instances', '0003_instance_created'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='instance',
|
||
|
name='name',
|
||
|
field=models.CharField(max_length=120),
|
||
|
),
|
||
|
]
|