|
|
@@ -0,0 +1,23 @@
|
|
|
+# Generated by Django 2.1.15 on 2021-01-26 21:13
|
|
|
+
|
|
|
+from django.db import migrations, models
|
|
|
+
|
|
|
+
|
|
|
+class Migration(migrations.Migration):
|
|
|
+
|
|
|
+ dependencies = [
|
|
|
+ ('oozie', '0006_auto_20200714_1204'),
|
|
|
+ ]
|
|
|
+
|
|
|
+ operations = [
|
|
|
+ migrations.AlterField(
|
|
|
+ model_name='job',
|
|
|
+ name='is_trashed',
|
|
|
+ field=models.BooleanField(blank=True, db_index=True, default=False, help_text='If this job is trashed.', verbose_name='Is trashed'),
|
|
|
+ ),
|
|
|
+ migrations.AlterField(
|
|
|
+ model_name='subworkflow',
|
|
|
+ name='propagate_configuration',
|
|
|
+ field=models.BooleanField(blank=True, default=True, help_text='If the workflow job configuration should be propagated to the child workflow.', verbose_name='Propagate configuration'),
|
|
|
+ ),
|
|
|
+ ]
|