Skip to content

Commit f2b0881

Browse files
committed
Corrected the add_topics migration
- Legacy-Id: 13525
1 parent 11a813d commit f2b0881

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/nomcom/migrations/0016_add_topics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Migration(migrations.Migration):
2020
name='Topic',
2121
fields=[
2222
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
23-
('subject', models.CharField(help_text=b'This short description will appear on the Feedback pages.', max_length=255, verbose_name=b'Subject')),
23+
('subject', models.CharField(help_text=b'This short description will appear on the Feedback pages.', max_length=255, verbose_name=b'Name')),
2424
('accepting_feedback', models.BooleanField(default=False, verbose_name=b'Is accepting feedback')),
2525
('audience', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='name.TopicAudienceName')),
2626
('description', models.ForeignKey(editable=False, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='description', to='dbtemplate.DBTemplate')),

0 commit comments

Comments
 (0)