Skip to content

Commit

Permalink
0.0.21 migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
ansibleguy committed May 20, 2024
1 parent 466ced6 commit 8573604
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions src/ansibleguy-webui/aw/migrations/0007_v0_0_21.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Generated by Django 5.0.6 on 2024-05-20 16:26

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


class Migration(migrations.Migration):
dependencies = [
("aw", "0006_v0_0_19"),
]

operations = [
migrations.RemoveField(
model_name="jobqueue",
name="job",
),
migrations.RemoveField(
model_name="jobqueue",
name="user",
),
migrations.AddField(
model_name="job",
name="execution_prompts_optional",
field=models.CharField(
blank=True, default=None, max_length=2000, null=True
),
),
migrations.AddField(
model_name="job",
name="execution_prompts_required",
field=models.CharField(
blank=True, default=None, max_length=2000, null=True
),
),
migrations.AddField(
model_name="jobqueue",
name="execution",
field=models.ForeignKey(
blank=True,
default=None,
null=True,
on_delete=django.db.models.deletion.CASCADE,
related_name="jobqueue_fk_jobexec",
to="aw.jobexecution",
),
),
]

0 comments on commit 8573604

Please sign in to comment.