You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
600 B
23 lines
600 B
# Generated by Django 2.1 on 2018-10-05 15:17
|
|
|
|
from django.db import migrations
|
|
import djing.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ip_pool', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='ipleasemodel',
|
|
name='mac_addr',
|
|
field=djing.fields.MACAddressField(blank=True, integer=True, null=True, verbose_name='Mac address'),
|
|
),
|
|
migrations.AlterUniqueTogether(
|
|
name='ipleasemodel',
|
|
unique_together={('ip', 'network', 'mac_addr')},
|
|
),
|
|
]
|