mirror of https://gitlab.federez.net/re2o/re2o
committed by
root
8 changed files with 60 additions and 98 deletions
@ -1,20 +0,0 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.10.7 on 2017-09-28 16:03 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('machines', '0058_auto_20170928_1711'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='port', |
|||
name='protocole', |
|||
field=models.CharField(choices=[('T', 'TCP'), ('U', 'UDP')], default='T', max_length=1), |
|||
), |
|||
] |
|||
@ -1,20 +0,0 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.10.7 on 2017-10-01 09:30 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('machines', '0059_port_protocole'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='port', |
|||
name='io', |
|||
field=models.CharField(choices=[('I', 'IN'), ('O', 'OUT')], default='O', max_length=1), |
|||
), |
|||
] |
|||
@ -1,24 +0,0 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.10.7 on 2017-10-01 15:27 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('machines', '0060_port_io'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.RemoveField( |
|||
model_name='portlist', |
|||
name='interfaces', |
|||
), |
|||
migrations.AddField( |
|||
model_name='interface', |
|||
name='port_lists', |
|||
field=models.ManyToManyField(to='machines.PortList'), |
|||
), |
|||
] |
|||
Loading…
Reference in new issue