databases/Apps/Extranet/schema/commandes_statut.sql
2016-10-25 15:54:11 +02:00

11 lines
284 B
SQL
Executable File

--
-- Structure de la table `commandes_statut`
--
CREATE TABLE IF NOT EXISTS `commandes_statut` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`libStatut` varchar(200) NOT NULL,
`typeCommande` char(1) NOT NULL,
`ordre` int(11) NOT NULL,
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8 ;