mirror of https://gitlab.federez.net/re2o/re2o
committed by
root
9 changed files with 71 additions and 7 deletions
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.10.7 on 2017-10-02 16:33 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('machines', '0058_auto_20171002_0350'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='iptype', |
|||
name='prefix_v6', |
|||
field=models.GenericIPAddressField(blank=True, null=True, protocol='IPv6'), |
|||
), |
|||
] |
|||
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.10.7 on 2017-10-02 16:14 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('preferences', '0019_remove_optionaltopologie_mac_autocapture'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='optionalmachine', |
|||
name='ipv6', |
|||
field=models.BooleanField(default=False), |
|||
), |
|||
] |
|||
Loading…
Reference in new issue