Skip to content

Commit

Permalink
fix: Add missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
qgerome committed Jun 26, 2024
1 parent 4de283f commit b5b9da0
Showing 1 changed file with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Generated by Django 5.0.3 on 2024-06-26 10:43

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


class Migration(migrations.Migration):
dependencies = [
("pipelines", "0044_merge_20240614_1400"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = [
migrations.AlterField(
model_name="pipelinerun",
name="duration",
field=models.DurationField(blank=True, null=True),
),
migrations.AlterField(
model_name="pipelinerun",
name="stopped_by",
field=models.ForeignKey(
blank=True,
null=True,
on_delete=django.db.models.deletion.SET_NULL,
related_name="+",
to=settings.AUTH_USER_MODEL,
),
),
]

0 comments on commit b5b9da0

Please sign in to comment.