salix/services/db/changes/1.0.0/04-config.sql

8 lines
407 B
SQL

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