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:
parent
2786395808
commit
cdcf2fa4c2
@ -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),
|
||||
),
|
||||
]
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user