Changed znote_accounts ip row to UNSIGNED (#269)

This commit is contained in:
Felipe Siqueira Pinheiro 2017-01-18 18:33:14 -02:00 committed by Stefan A. Brannfjell
parent 6fa7d19cf1
commit 013e8f1174

View File

@ -38,7 +38,7 @@ INSERT INTO `znote` (`version`, `installed`) VALUES
CREATE TABLE IF NOT EXISTS `znote_accounts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`account_id` int(11) NOT NULL,
`ip` int(10) NOT NULL,
`ip` int(10) UNSIGNED NOT NULL,
`created` int(10) NOT NULL,
`points` int(10) DEFAULT 0,
`cooldown` int(10) DEFAULT 0,