2
0
mirror of https://github.com/Znote/ZnoteAAC.git synced 2025-05-06 14:19:22 +02:00

connect.php, fixed mysql import error on setup.

This commit is contained in:
Stefan A. Brannfjell 2016-05-22 21:54:44 +02:00
parent abfa6482fe
commit 8cf999396b

@ -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 ;