Skip to content

Commit 5a79fc5

Browse files
authored
Added the missing migration (#1884)
1 parent a3da340 commit 5a79fc5

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Generated by Django 4.2.21 on 2025-06-17 10:08
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("tickets", "0027_remove_shopticket_email_prizeticket_comment"),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name="prizeticket",
15+
name="comment",
16+
field=models.TextField(
17+
help_text="A comment about this PrizeTicket (what was it given for)"
18+
),
19+
),
20+
]

0 commit comments

Comments
 (0)