8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-07-06 22:24:06 +00:00
re2o/machines/migrations/0088_iptype_prefix_v6_length.py

26 lines
673 B
Python
Raw Normal View History

2018-07-16 18:52:39 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2018-07-16 18:46
from __future__ import unicode_literals
import django.core.validators
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("machines", "0087_dnssec")]
2018-07-16 18:52:39 +00:00
operations = [
migrations.AddField(
model_name="iptype",
name="prefix_v6_length",
field=models.IntegerField(
default=64,
validators=[
django.core.validators.MaxValueValidator(128),
django.core.validators.MinValueValidator(0),
],
),
)
2018-07-16 18:52:39 +00:00
]