Skip to content

Commit

Permalink
Adds validator migration
Browse files Browse the repository at this point in the history
  • Loading branch information
Koed00 committed Jul 2, 2020
1 parent 1fe17f8 commit d3ac056
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions django_q/migrations/0012_auto_20200702_1608.py
@@ -0,0 +1,19 @@
# Generated by Django 3.0.8 on 2020-07-02 16:08

from django.db import migrations, models
import django_q.models


class Migration(migrations.Migration):

dependencies = [
('django_q', '0011_auto_20200628_1055'),
]

operations = [
migrations.AlterField(
model_name='schedule',
name='cron',
field=models.CharField(blank=True, help_text='Cron expression', max_length=100, null=True, validators=[django_q.models.validate_cron]),
),
]

0 comments on commit d3ac056

Please sign in to comment.