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.

13 lines
292 B

CREATE TABLE `utilisateur` (
`idu` int(11) NOT NULL,
`login` varchar(255) NOT NULL,
`mdp` varchar(32) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `utilisateur`
ADD PRIMARY KEY (`idu`);
ALTER TABLE `utilisateur`
MODIFY `idu` int(11) NOT NULL AUTO_INCREMENT;
COMMIT;