Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 493 Bytes

README.md

File metadata and controls

21 lines (20 loc) · 493 Bytes
CREATE TABLE `Last Release` (
  `id` int(11) NOT NULL,
  `title` text NOT NULL,
  `image` text NOT NULL,
  `releaseDate` text NOT NULL,
  `tome` int(11) NOT NULL,
  `tag1` text NOT NULL,
  `tag2` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `users` (
  `id` int(11) NOT NULL,
  `pseudo` text NOT NULL,
  `nom` text NOT NULL,
  `prenom` text NOT NULL,
  `mdp` text NOT NULL,
  `email` text NOT NULL,
  `token` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;