11 lines
284 B
SQL
Executable File
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 ; |