This field is populated by pglister_sync, copying information from
auth_user.username, which can be up to 150 characters.
--- /dev/null
+# Generated by Django 5.2.6 on 2025-09-22 18:39
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ("mailarchives", "0004_resend_rate_limit"),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name="listsubscriber",
+ name="username",
+ field=models.CharField(max_length=150),
+ ),
+ ]
# We set the username of the community account instead of a
# foreign key, because the user might not exist.
list = models.ForeignKey(List, null=False, blank=False, on_delete=models.CASCADE)
- username = models.CharField(max_length=30, null=False, blank=False)
+ username = models.CharField(max_length=150, null=False, blank=False)
class Meta:
unique_together = (('list', 'username'), )