Skip to content

Commit

Permalink
v0.0.18 migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
ansibleguy committed Mar 15, 2024
1 parent 5769d6c commit f8246ff
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/ansibleguy-webui/aw/migrations/0005_v0_0_18.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 5.0.3 on 2024-03-15 18:44

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("aw", "0004_v0_0_15"),
]

operations = [
migrations.AlterField(
model_name="jobexecution",
name="command",
field=models.CharField(
blank=True, default=None, max_length=2000, null=True
),
),
]

0 comments on commit f8246ff

Please sign in to comment.