mirror of
https://github.com/retspen/webvirtcloud
synced 2025-02-15 08:55:19 +00:00
16 lines
350 B
Python
16 lines
350 B
Python
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('computes', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='Compute',
|
|
name='details',
|
|
field=models.CharField(max_length=50, null=True, blank=True),
|
|
),
|
|
]
|