(4, '2015-02-24 17:42:08', 2),
Création de la table detail commande :
CREATE TABLE IF NOT EXISTS `detail_commande` (
`id` int(11) NOT NULL,
`commande_id` int(11) NOT NULL,
`produit_id` int(11) NOT NULL,
`quantite` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Création de la table detail panier :
CREATE TABLE IF NOT EXISTS `detail_panier` (
`id` int(11) NOT NULL,
`panier_id` int(11) NOT NULL,
`produit_id` int(11) NOT NULL,
`quantite` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Création de la table panier :
CREATE TABLE IF NOT EXISTS `panier` (
`id` int(11) NOT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`utilisateur_id` int(11) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
Insertion du contenu de la table commande :
INSERT INTO `panier` (`id`, `date`, `utilisateur_id`) VALUES
(1, '2015-02-24 17:41:59', 1),
(2, '2015-02-24 17:41:59', 2),
(3, '2015-02-24 17:42:08', 1),
(4, '2015-02-24 17:42:08', 2),
(5, '2015-02-24 17:42:16', 3),
(6, '2015-02-24 17:42:16', 1),
(7, '2015-02-24 17:42:23', 1),
(8, '2015-02-24 17:42:23', 3);
Création de la table photo :
CREATE TABLE IF NOT EXISTS `photo` (
`id` int(11) NOT NULL,
`produit_id` int(11) NOT NULL,
`url` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;