Files
DARKNAGAN ba3d8f06f6 Historisation Exemple
Exemple test historisé
2018-10-21 18:37:25 +02:00

12 lines
294 B
SQL

--
-- Structure de la table `users`
--
CREATE TABLE `users` (
`id` bigint(20) NOT NULL,
`username` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`avatar` text NOT NULL,
`signup_date` int(10) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;