Last active
November 27, 2025 16:36
-
-
Save codigoconjuan/878895d47b07e01c523e3597b52ecd9e to your computer and use it in GitHub Desktop.
Tabla de Usuarios de DevWebCamp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE `usuarios` ( | |
| `id` int NOT NULL AUTO_INCREMENT, | |
| `nombre` varchar(40) DEFAULT NULL, | |
| `apellido` varchar(40) DEFAULT NULL, | |
| `email` varchar(40) DEFAULT NULL, | |
| `password` varchar(60) DEFAULT NULL, | |
| `confirmado` tinyint(1) DEFAULT NULL, | |
| `token` varchar(13) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL, | |
| `admin` tinyint(1) DEFAULT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment