mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 03:48:04 +00:00
18 lines
446 B
Python
18 lines
446 B
Python
# Generated by Django 2.2.24 on 2021-11-05 16:08
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [("core", "0036_auto_20211001_0248")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="user",
|
|
name="pronouns",
|
|
field=models.CharField(
|
|
blank=True, default="", max_length=64, verbose_name="pronouns"
|
|
),
|
|
)
|
|
]
|