mirror of
https://github.com/ZwareBear/awx.git
synced 2026-05-02 12:51:48 -05:00
23 lines
646 B
Python
23 lines
646 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.11 on 2018-08-17 16:13
|
|
from __future__ import unicode_literals
|
|
|
|
from decimal import Decimal
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0048_v330_django_created_modified_by_model_name'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='instance',
|
|
name='capacity_adjustment',
|
|
field=models.DecimalField(decimal_places=2, default=Decimal('1'), max_digits=3, validators=[django.core.validators.MinValueValidator(0)]),
|
|
),
|
|
]
|