-
-
Notifications
You must be signed in to change notification settings - Fork 109
Closed
Labels
Description
Following SQL is not correctly parsed:
CREATE TABLE `customers` (
`login_cnt` int(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Počet přihlášení',
`activated` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Účet je aktivovaný (0 pouze u fiktivní registrace na základě prodejek)',
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci;
It seems that combiding DEFAULT with COMMENT is what causes the problem here.