mirror of https://gitlab.federez.net/re2o/re2o
3 changed files with 42 additions and 4 deletions
@ -0,0 +1,19 @@ |
|||
# -*- coding: utf-8 -*- |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('machines', '0009_auto_20160703_2358'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='machine', |
|||
name='name', |
|||
field=models.CharField(blank=True, unique=True, max_length=255, help_text='Optionnel', null=True), |
|||
), |
|||
] |
|||
@ -0,0 +1,19 @@ |
|||
# -*- coding: utf-8 -*- |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('machines', '0010_auto_20160704_0104'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='machine', |
|||
name='name', |
|||
field=models.CharField(help_text='Optionnel', blank=True, null=True, max_length=255), |
|||
), |
|||
] |
|||
Loading…
Reference in new issue