Merge pull request #433 from radiorabe/fix/429-ipv6-schema-updates

Fix/429 ipv6 schema updates
This commit is contained in:
Robb 2018-02-10 16:34:23 -05:00 committed by GitHub
commit efe0aefddc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 20 additions and 4 deletions

View file

@ -39,7 +39,7 @@ class CcServiceRegisterTableMap extends TableMap
$this->setUseIdGenerator(false);
// columns
$this->addPrimaryKey('name', 'DbName', 'VARCHAR', true, 32, null);
$this->addColumn('ip', 'DbIp', 'VARCHAR', true, 18, null);
$this->addColumn('ip', 'DbIp', 'VARCHAR', true, 45, null);
// validators
} // initialize()