mirror of
https://github.com/ansible/awx.git
synced 2026-03-30 23:35:05 -02:30
* Added schedule_rruleset lookup plugin for awx.awx * Added DB migration for rrule size * Updated schedule docs * The schedule API endpoint will now return an array of errors on rule validation to try and inform the user of all errors instead of just the first
19 lines
459 B
Python
19 lines
459 B
Python
# Generated by Django 3.2.12 on 2022-04-18 21:29
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0159_deprecate_inventory_source_UoPU_field'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='schedule',
|
|
name='rrule',
|
|
field=models.TextField(help_text='A value representing the schedules iCal recurrence rule.'),
|
|
),
|
|
]
|