diff --git a/wcivf/apps/parties/migrations/0025_alter_party_ec_id.py b/wcivf/apps/parties/migrations/0025_alter_party_ec_id.py new file mode 100644 index 000000000..9b47c6a5a --- /dev/null +++ b/wcivf/apps/parties/migrations/0025_alter_party_ec_id.py @@ -0,0 +1,24 @@ +# Generated by Django 5.2.12 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("parties", "0024_alter_partyemblem_description"), + ] + + operations = [ + migrations.AlterField( + model_name="party", + name="ec_id", + field=models.CharField( + db_index=True, + help_text="\n An ID issued by The Electoral Commission in their party register,\n with the exception of Democracy Club pseudo IDs for special parties\n ", + max_length=25, + null=True, + unique=True, + verbose_name="Electoral Commission Identifier", + ), + ), + ] diff --git a/wcivf/apps/parties/models.py b/wcivf/apps/parties/models.py index 518e37a6b..a483cf3a2 100644 --- a/wcivf/apps/parties/models.py +++ b/wcivf/apps/parties/models.py @@ -47,10 +47,10 @@ class Party(models.Model): max_length=25, unique=True, null=True, - verbose_name="Electoral Commission Idenfitier", + verbose_name="Electoral Commission Identifier", help_text=""" An ID issued by The Electoral Commission in their party register, - with the exception of Democracy Club psuedo IDs for special parties + with the exception of Democracy Club pseudo IDs for special parties """, ) register = models.CharField(