CREATE TABLE `util`.`config` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT, `dbVersion` CHAR(11) NULL DEFAULT NULL COMMENT 'The current database version', `hasTriggersDisabled` TINYINT(1) NOT NULL DEFAULT 0 COMMENT 'Defines if triggers are disabled', `environment` VARCHAR(45) NULL DEFAULT NULL COMMENT 'The current Database environment', PRIMARY KEY (`id`)) COMMENT = 'Global configuration table';