feat(fallback): add comment field to TeamMember
parent
7b4df14bee
commit
15475e2eec
@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 5.0.4 on 2024-05-19 21:22
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("fallback", "0006_fallbackassignment_was_full"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="teammember",
|
||||||
|
name="comment",
|
||||||
|
field=models.CharField(default="", max_length=100),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in New Issue