static leases use 0, not NULL timeout

fixed static leases
This commit is contained in:
Martin Willi
2008-05-15 09:26:47 +00:00
parent bb94e1ed60
commit 89658f6d6c
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -158,7 +158,7 @@ CREATE TABLE pools (
`start` varbinary(16) NOT NULL,
`end` varbinary(16) NOT NULL,
`next` varbinary(16) NOT NULL,
`timeout` int(10) unsigned DEFAULT NULL,
`timeout` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;