databases/Metier/schema/execution.process.sql
2016-07-01 13:58:43 +02:00

10 lines
492 B
SQL

CREATE TABLE `process` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`code` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`label` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
`category` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Catégorie du processus',
PRIMARY KEY (`id`),
UNIQUE KEY `code` (`code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Liste des traitements';