From 43510a1fa9f89d02fa516904eab793366cf1548e Mon Sep 17 00:00:00 2001 From: Stefan Brannfjell Date: Sun, 7 Sep 2014 23:24:56 +0200 Subject: [PATCH] Forgot to update the mysql tables. :) --- engine/database/connect.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/engine/database/connect.php b/engine/database/connect.php index a3229e1..8094a68 100644 --- a/engine/database/connect.php +++ b/engine/database/connect.php @@ -30,6 +30,8 @@ CREATE TABLE IF NOT EXISTS `znote_accounts` ( `created` int(10) NOT NULL, `points` int(10) DEFAULT 0, `cooldown` int(10) DEFAULT 0, + `active` tinyint(4) NOT NULL DEFAULT '0', + `activekey` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;