mirror of https://gitlab.federez.net/re2o/re2o
Browse Source
Fix bug sur l'edition du txt + élargi le champ pour dnssec See merge request federez/re2o!35fix_superuser
8 changed files with 68 additions and 29 deletions
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.10.7 on 2017-11-15 01:53 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('machines', '0063_auto_20171020_0040'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='text', |
|||
name='field2', |
|||
field=models.TextField(max_length=2047), |
|||
), |
|||
] |
|||
@ -0,0 +1,19 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.10.7 on 2017-11-15 14:14 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('machines', '0064_auto_20171115_0253'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.RenameModel( |
|||
old_name='Text', |
|||
new_name='Txt', |
|||
), |
|||
] |
|||
Loading…
Reference in new issue