Skip to content

Commit

Permalink
add missing migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
ansibleguy committed Jul 20, 2024
1 parent e55a7c5 commit b975990
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/ansibleguy-webui/aw/migrations/0009_v0_0_23.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 5.0.7 on 2024-07-15 14:40

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("aw", "0008_v0_0_22"),
]

operations = [
migrations.AlterField(
model_name="job",
name="execution_prompts",
field=models.CharField(default="limit,mode_check,tags", max_length=5000),
),
]

0 comments on commit b975990

Please sign in to comment.