mirror of
https://github.com/retspen/webvirtcloud
synced 2025-02-11 23:15:18 +00:00
16 lines
356 B
Python
16 lines
356 B
Python
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('accounts', '0004_userattributes'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='userattributes',
|
|
name='can_clone_instances',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|