mirror of
https://github.com/ansible/awx.git
synced 2026-01-08 14:32:07 -03:30
add the migration for changing the default capacity adjustment
This commit is contained in:
parent
df8d2740d7
commit
e5635657d0
@ -0,0 +1,22 @@
|
||||
# Generated by Django 4.2.20 on 2025-05-22 08:57
|
||||
|
||||
from decimal import Decimal
|
||||
import django.core.validators
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('main', '0205_delete_token_cleanup_job'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='instance',
|
||||
name='capacity_adjustment',
|
||||
field=models.DecimalField(
|
||||
decimal_places=2, default=Decimal('0.75'), max_digits=3, validators=[django.core.validators.MinValueValidator(Decimal('0'))]
|
||||
),
|
||||
),
|
||||
]
|
||||
Loading…
x
Reference in New Issue
Block a user