mirror of https://gitlab.federez.net/re2o/re2o
5 changed files with 58 additions and 4 deletions
@ -0,0 +1,24 @@ |
|||
# -*- coding: utf-8 -*- |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('users', '0012_auto_20160703_1230'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='user', |
|||
name='comment', |
|||
field=models.CharField(max_length=255, help_text="Infos sur l'etablissement (optionnel)", blank=True), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='user', |
|||
name='promo', |
|||
field=models.CharField(max_length=255, blank=True), |
|||
), |
|||
] |
|||
@ -0,0 +1,23 @@ |
|||
# -*- coding: utf-8 -*- |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('users', '0013_auto_20160704_1547'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.RemoveField( |
|||
model_name='user', |
|||
name='promo', |
|||
), |
|||
migrations.AlterField( |
|||
model_name='user', |
|||
name='comment', |
|||
field=models.CharField(blank=True, help_text='Commentaire, promo', max_length=255), |
|||
), |
|||
] |
|||
Loading…
Reference in new issue