mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-10-30 16:43:55 +00:00 
			
		
		
		
	Fix pronouns field being mandatory
This commit is contained in:
		| @@ -5,14 +5,14 @@ from django.db import migrations, models | ||||
|  | ||||
| class Migration(migrations.Migration): | ||||
|  | ||||
|     dependencies = [ | ||||
|         ("core", "0036_auto_20211001_0248"), | ||||
|     ] | ||||
|     dependencies = [("core", "0036_auto_20211001_0248")] | ||||
|  | ||||
|     operations = [ | ||||
|         migrations.AlterField( | ||||
|             model_name="user", | ||||
|             name="pronouns", | ||||
|             field=models.CharField(default="", max_length=64, verbose_name="pronouns"), | ||||
|         ), | ||||
|             field=models.CharField( | ||||
|                 blank=True, default="", max_length=64, verbose_name="pronouns" | ||||
|             ), | ||||
|         ) | ||||
|     ] | ||||
|   | ||||
| @@ -229,7 +229,7 @@ class User(AbstractBaseUser): | ||||
|         blank=True, | ||||
|         choices=[("MAN", _("Man")), ("WOMAN", _("Woman")), ("OTHER", _("Other"))], | ||||
|     ) | ||||
|     pronouns = models.CharField(_("pronouns"), max_length=64, default="") | ||||
|     pronouns = models.CharField(_("pronouns"), max_length=64, blank=True, default="") | ||||
|     tshirt_size = models.CharField( | ||||
|         _("tshirt size"), | ||||
|         max_length=5, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user