mirror of
https://github.com/retspen/webvirtcloud
synced 2025-02-15 08:55:19 +00:00
16 lines
338 B
Python
16 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),
|
|
),
|
|
]
|