mirror of
https://github.com/ansible/awx.git
synced 2026-01-18 21:21:21 -03:30
remove field size limit on adhoc limit
related: 4b669fb16decaab824e64bbdc78de4683677fe95
This commit is contained in:
parent
8a3c10686e
commit
e4eda3ef0d
20
awx/main/migrations/0059_v350_remove_adhoc_limit.py
Normal file
20
awx/main/migrations/0059_v350_remove_adhoc_limit.py
Normal file
@ -0,0 +1,20 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.16 on 2019-02-13 13:27
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('main', '0058_v350_remove_limit_limit'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='adhoccommand',
|
||||
name='limit',
|
||||
field=models.TextField(blank=True, default=''),
|
||||
),
|
||||
]
|
||||
@ -43,8 +43,7 @@ class AdHocCommand(UnifiedJob, JobNotificationMixin):
|
||||
null=True,
|
||||
on_delete=models.SET_NULL,
|
||||
)
|
||||
limit = models.CharField(
|
||||
max_length=1024,
|
||||
limit = models.TextField(
|
||||
blank=True,
|
||||
default='',
|
||||
)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user