mirror of
				https://gitlab.crans.org/mediatek/med.git
				synced 2025-11-04 03:42:13 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			668 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			668 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: utf-8 -*-
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('users', '0001_initial'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='user',
 | 
						|
            name='comment',
 | 
						|
            field=models.CharField(blank=True, help_text='Commentaire, promo', max_length=255),
 | 
						|
        ),
 | 
						|
        migrations.AlterField(
 | 
						|
            model_name='user',
 | 
						|
            name='pseudo',
 | 
						|
            field=models.CharField(unique=True, help_text='Doit contenir uniquement des lettres, chiffres, ou tirets. ', max_length=32),
 | 
						|
        ),
 | 
						|
    ]
 |