diff --git a/engine/database/connect.php b/engine/database/connect.php
index 30f2bc7..d5274a2 100644
--- a/engine/database/connect.php
+++ b/engine/database/connect.php
@@ -43,7 +43,7 @@ CREATE TABLE IF NOT EXISTS `znote_accounts` (
`points` int(10) DEFAULT 0,
`cooldown` int(10) DEFAULT 0,
`active` tinyint(4) NOT NULL DEFAULT '0',
- `activekey` int(11) NOT NULL,
+ `activekey` int(11) NOT NULL DEFAULT '0',
`flag` varchar(20) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
@@ -323,4 +323,4 @@ function voidQuery($query) {
$accQueriesData[] = "[" . elapsedTime() . "] " . $query;
mysqli_query($connect,$query) or die(var_dump($query)."
(query - SQL error)
Type: voidQuery (voidQuery is used for update, insert or delete from database)
".mysqli_error($connect));
}
-?>
\ No newline at end of file
+?>