mirror of
https://github.com/retspen/webvirtcloud
synced 2025-02-19 02:45:18 +00:00
17 lines
336 B
Python
17 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),
|
||
|
),
|
||
|
]
|