mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-11-04 02:53:06 +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"
 | 
						|
            ),
 | 
						|
        )
 | 
						|
    ]
 |