Revision cc3f266e snf-cyclades-app/synnefo/db/models.py

b/snf-cyclades-app/synnefo/db/models.py
440 440
    name = models.CharField('Network Name', max_length=128)
441 441
    userid = models.CharField('User ID of the owner', max_length=128, null=True)
442 442
    subnet = models.CharField('Subnet', max_length=32, default='10.0.0.0/24')
443
    subnet6 = models.CharField('IPv6 Subnet', max_length=64, null=True)
443 444
    gateway = models.CharField('Gateway', max_length=32, null=True)
445
    gateway6 = models.CharField('IPv6 Gateway', max_length=64, null=True)
444 446
    dhcp = models.BooleanField('DHCP', default=True)
445 447
    type = models.CharField(choices=NETWORK_TYPES, max_length=50,
446 448
                            default='PRIVATE_PHYSICAL_VLAN')

Also available in: Unified diff