mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-10-31 23:22:49 +00:00
c4a104b3b6
Just ran black on the whoe repository. Fix #210.
43 lines
1.2 KiB
Python
43 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.7 on 2019-01-08 22:23
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("machines", "0100_auto_20190102_1753")]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name="ouvertureport",
|
|
options={
|
|
"verbose_name": "ports opening",
|
|
"verbose_name_plural": "ports openings",
|
|
},
|
|
),
|
|
migrations.AlterField(
|
|
model_name="nas",
|
|
name="port_access_mode",
|
|
field=models.CharField(
|
|
choices=[("802.1X", "802.1X"), ("Mac-address", "MAC-address")],
|
|
default="802.1X",
|
|
max_length=32,
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="vlan",
|
|
name="igmp",
|
|
field=models.BooleanField(
|
|
default=False, help_text="v4 multicast management"
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="vlan",
|
|
name="mld",
|
|
field=models.BooleanField(
|
|
default=False, help_text="v6 multicast management"
|
|
),
|
|
),
|
|
]
|