8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-01 23:42:34 +00:00
re2o/preferences/migrations/0066_optionalmachine_default_dns_ttl.py

22 lines
588 B
Python
Raw Permalink Normal View History

2019-10-02 20:48:33 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.11.23 on 2019-10-02 20:22
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("preferences", "0065_auto_20191010_1227")]
2019-10-02 20:48:33 +00:00
operations = [
migrations.AddField(
model_name="optionalmachine",
name="default_dns_ttl",
field=models.PositiveIntegerField(
default=172800,
verbose_name="Default Time To Live (TTL) for CNAME, A and AAA records.",
),
)
2019-10-02 20:48:33 +00:00
]