You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
382 B

CREATE TABLE `commentaire` (
`id_comentaire` int(11) NOT NULL,
`article_id` int(11) NOT NULL,
`pseudo` varchar(255) NOT NULL,
`mail` varchar(255) NOT NULL,
`commentaire` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `commentaire`
ADD PRIMARY KEY (`id_comentaire`);
ALTER TABLE `commentaire`
MODIFY `id_comentaire` int(11) NOT NULL AUTO_INCREMENT;