1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-30 13:55:31 +03:00

Increase instance version length

This commit is contained in:
Jim Ladd 2019-10-03 17:52:44 -07:00 committed by Shane McDonald
parent 2786395808
commit cdcf2fa4c2
No known key found for this signature in database
GPG Key ID: 6F374AF6E9EB9374
2 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 2.2.4 on 2019-10-04 00:50
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('main', '0094_v360_webhook_mixin2'),
]
operations = [
migrations.AlterField(
model_name='instance',
name='version',
field=models.CharField(blank=True, max_length=120),
),
]

View File

@ -59,7 +59,7 @@ class Instance(HasPolicyEditsMixin, BaseModel):
null=True,
editable=False,
)
version = models.CharField(max_length=24, blank=True)
version = models.CharField(max_length=120, blank=True)
capacity = models.PositiveIntegerField(
default=100,
editable=False,