From 65a9d94544ff30f1126c7e39c1f67196b6fe4611 Mon Sep 17 00:00:00 2001 From: AnsibleGuy Date: Sun, 14 Jul 2024 00:49:09 +0200 Subject: [PATCH] add 0.0.22 migrations --- .../aw/migrations/0008_v0_0_22.py | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/ansibleguy-webui/aw/migrations/0008_v0_0_22.py diff --git a/src/ansibleguy-webui/aw/migrations/0008_v0_0_22.py b/src/ansibleguy-webui/aw/migrations/0008_v0_0_22.py new file mode 100644 index 0000000..c1cdcde --- /dev/null +++ b/src/ansibleguy-webui/aw/migrations/0008_v0_0_22.py @@ -0,0 +1,28 @@ +# Generated by Django 5.0.7 on 2024-07-13 22:47 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("aw", "0007_v0_0_21"), + ] + + operations = [ + migrations.RemoveField( + model_name="job", + name="execution_prompts_optional", + ), + migrations.RemoveField( + model_name="job", + name="execution_prompts_required", + ), + migrations.AddField( + model_name="job", + name="execution_prompts", + field=models.CharField( + blank=True, default=None, max_length=5000, null=True + ), + ), + ]