From 30add37bd668ea7a15867261ffcbdb4ca3d8bcad Mon Sep 17 00:00:00 2001 From: "Roman Schmerold (BNoiZe)" Date: Sun, 5 Jan 2014 08:04:04 +0100 Subject: [PATCH] Fixed a missing comma (thx Johannes Gilges) Signed-off-by: Roman Schmerold (BNoiZe) --- install/froxlor.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/froxlor.sql b/install/froxlor.sql index bcb36b12..643e3f82 100644 --- a/install/froxlor.sql +++ b/install/froxlor.sql @@ -29,7 +29,7 @@ CREATE TABLE `ftp_users` ( `down_count` int(15) NOT NULL default '0', `down_bytes` bigint(30) NOT NULL default '0', `customerid` int(11) NOT NULL default '0', - `description` varchar(255) NOT NULL DEFAULT '' + `description` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`), KEY `customerid` (`customerid`)