Skip to content

Commit

Permalink
Generate migration to match field
Browse files Browse the repository at this point in the history
  • Loading branch information
zecookiez committed Sep 13, 2020
1 parent 7ddc946 commit ab0a42d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions judge/migrations/0111_blank_assignees_ticket.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.15 on 2020-09-13 16:05

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('judge', '0110_default_output_prefix_override'),
]

operations = [
migrations.AlterField(
model_name='ticket',
name='assignees',
field=models.ManyToManyField(blank=True, related_name='assigned_tickets', to='judge.Profile', verbose_name='assignees'),
),
]

0 comments on commit ab0a42d

Please # to comment.