mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-27 15:12:25 +00:00
20 lines
568 B
Python
20 lines
568 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.7 on 2018-06-09 17:20
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('topologie', '0063_auto_20180609_1158'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='portprofile',
|
|
name='radius_mode',
|
|
field=models.CharField(blank=True, choices=[('STRICT', 'STRICT'), ('COMMON', 'COMMON')], max_length=32, null=True, verbose_name='RADIUS mode'),
|
|
),
|
|
]
|