remove field size limit on adhoc limit

related: 4b669fb16decaab824e64bbdc78de4683677fe95
This commit is contained in:
Ryan Petrello 2019-02-13 08:33:42 -05:00
parent 8a3c10686e
commit e4eda3ef0d
No known key found for this signature in database
GPG Key ID: F2AA5F2122351777
2 changed files with 21 additions and 2 deletions

View 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=''),
),
]

View File

@ -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='',
)