mirror of
https://github.com/retspen/webvirtcloud
synced 2026-07-06 11:35:41 +00:00
Fixe migrations for new deployments @Real-Gecko
This commit is contained in:
parent
c39efd8a0b
commit
73dfdfed85
12 changed files with 93 additions and 107 deletions
26
accounts/migrations/0003_auto_20200602_1004.py
Normal file
26
accounts/migrations/0003_auto_20200602_1004.py
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# Generated by Django 2.2.12 on 2020-06-02 10:04
|
||||
|
||||
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)]),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue