mirror of
https://github.com/retspen/webvirtcloud
synced 2025-02-15 17:05:17 +00:00
16 lines
336 B
Python
16 lines
336 B
Python
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('instances', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='instance',
|
|
name='is_template',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|