From 013e8f1174901eb63117ba0fb8dec4eba236c033 Mon Sep 17 00:00:00 2001 From: Felipe Siqueira Pinheiro Date: Wed, 18 Jan 2017 18:33:14 -0200 Subject: [PATCH] Changed znote_accounts ip row to UNSIGNED (#269) --- engine/database/connect.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/database/connect.php b/engine/database/connect.php index 2aee147..8d326bd 100644 --- a/engine/database/connect.php +++ b/engine/database/connect.php @@ -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,