blob: 8d1c7d4b3c23de3b5dcae74667dca2e229bec0f0 [file] [log] [blame]
Scott Baker1fc80d22014-11-17 11:06:33 -08001# -*- coding: utf-8 -*-
2from __future__ import unicode_literals
3
4from django.db import models, migrations
5import core.models.network
6import timezones.fields
7
8
9class Migration(migrations.Migration):
10
11 dependencies = [
Scott Baker508e5a02014-11-17 17:01:33 -080012 ('core', '0006_auto_20141111_2314'),
Scott Baker1fc80d22014-11-17 11:06:33 -080013 ]
14
15 operations = [
16 migrations.AlterField(
17 model_name='network',
18 name='ports',
19 field=models.CharField(blank=True, max_length=1024, null=True, validators=[core.models.network.ValidateNatList]),
20 ),
21 ]