1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
| -- Base de données: `db0221703`
--
-- --------------------------------------------------------
--
-- Structure de la table `categorie`
--
CREATE TABLE IF NOT EXISTS `categorie` (
`id` int(10) NOT NULL auto_increment,
`categorie` varchar(200) NOT NULL default '' COMMENT 'deroulant',
PRIMARY KEY (`id`),
KEY `categorie` (`categorie`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;
-- --------------------------------------------------------
--
-- Structure de la table `commande`
--
CREATE TABLE IF NOT EXISTS `commande` (
`num` int(10) NOT NULL auto_increment,
`nom_produit` varchar(100) NOT NULL default '',
`quantite` varchar(10) NOT NULL default '' COMMENT 'deroulant',
`cdt` varchar(50) NOT NULL default '' COMMENT 'deroulant',
`qt_cdt` varchar(10) NOT NULL default '',
`u_qt_cdt` varchar(50) NOT NULL default '' COMMENT 'deroulant',
PRIMARY KEY (`num`),
UNIQUE KEY `nom_produit` (`nom_produit`),
KEY `quantite` (`quantite`,`cdt`,`qt_cdt`,`u_qt_cdt`),
KEY `nom_produit_2` (`nom_produit`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=114 ;
-- --------------------------------------------------------
--
-- Structure de la table `conditionnement`
--
CREATE TABLE IF NOT EXISTS `conditionnement` (
`id` int(10) NOT NULL auto_increment,
`type_cdt` varchar(50) NOT NULL default '',
PRIMARY KEY (`id`),
KEY `type_cdt` (`type_cdt`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ;
-- --------------------------------------------------------
--
-- Structure de la table `info_cdt`
--
CREATE TABLE IF NOT EXISTS `info_cdt` (
`num` int(10) NOT NULL auto_increment,
`nom_produit` varchar(100) NOT NULL default '',
`qt_cdt` varchar(10) NOT NULL default '',
`u_qt_cdt` varchar(50) NOT NULL default '' COMMENT 'deroulant',
`prix_u_cdt` varchar(10) NOT NULL default '0',
PRIMARY KEY (`num`),
UNIQUE KEY `nom_produit` (`nom_produit`),
KEY `qt_cdt` (`qt_cdt`,`u_qt_cdt`,`prix_u_cdt`),
KEY `nom_produit_2` (`nom_produit`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=114 ;
-- --------------------------------------------------------
--
-- Structure de la table `info_produit`
--
CREATE TABLE IF NOT EXISTS `info_produit` (
`num` int(10) NOT NULL auto_increment,
`nom_produit` varchar(100) NOT NULL default '',
`cdt` varchar(50) NOT NULL default '' COMMENT 'deroulant',
`prix` varchar(6) NOT NULL default '',
`categorie` varchar(50) NOT NULL default '' COMMENT 'deroulant',
`etat` varchar(15) NOT NULL default 'activé',
PRIMARY KEY (`num`),
UNIQUE KEY `nom_produit_2` (`nom_produit`),
KEY `nom_produit` (`nom_produit`,`cdt`,`prix`,`categorie`),
KEY `etat` (`etat`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=114 ;
-- --------------------------------------------------------
--
-- Structure de la table `inventaire`
--
CREATE TABLE IF NOT EXISTS `inventaire` (
`nom_produit` varchar(100) NOT NULL default '',
`unite` varchar(50) NOT NULL default '' COMMENT 'deroulant',
`num` int(10) NOT NULL auto_increment,
PRIMARY KEY (`num`),
UNIQUE KEY `nom_produit` (`nom_produit`),
KEY `unite` (`unite`),
KEY `nom_produit_2` (`nom_produit`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=114 ;
-- --------------------------------------------------------
--
-- Structure de la table `reception`
--
CREATE TABLE IF NOT EXISTS `reception` (
`nom_produit` varchar(100) NOT NULL default '',
`qt_recept` varchar(10) NOT NULL default '',
`cdt` varchar(100) NOT NULL default '',
`qt_cdt` varchar(100) NOT NULL default '',
`prix` varchar(10) NOT NULL default '',
`categorie` varchar(50) NOT NULL default '',
`num` int(10) NOT NULL auto_increment,
PRIMARY KEY (`num`),
KEY `nom_produit` (`nom_produit`,`categorie`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;
-- --------------------------------------------------------
--
-- Structure de la table `unite_cdt`
--
CREATE TABLE IF NOT EXISTS `unite_cdt` (
`id` int(10) NOT NULL auto_increment,
`u_cdt` varchar(100) NOT NULL default '',
PRIMARY KEY (`id`),
KEY `u_cdt` (`u_cdt`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ; |
Partager