mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 03:54:15 +00:00
24 lines
805 B
Python
24 lines
805 B
Python
# Generated by Django 2.2.12 on 2020-06-04 09:30
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('accounts', '0002_permissionset'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='userattributes',
|
|
name='max_cpus',
|
|
field=models.IntegerField(default=2, help_text='-1 for unlimited. Any integer value', validators=[django.core.validators.MinValueValidator(-1)]),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='userattributes',
|
|
name='max_instances',
|
|
field=models.IntegerField(default=2, help_text='-1 for unlimited. Any integer value', validators=[django.core.validators.MinValueValidator(-1)]),
|
|
),
|
|
]
|