Skip to content

Commit 70e34cb

Browse files
committed
Improve help text
1 parent a904053 commit 70e34cb

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 5.1.7 on 2025-03-11 19:29
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('common', '0003_alter_userprofile_pbx_number'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='reminder',
15+
name='subject',
16+
field=models.CharField(help_text='Briefly, what is this reminder about?', max_length=250, verbose_name='Subject'),
17+
),
18+
]

0 commit comments

Comments
 (0)