Skip to content

Instantly share code, notes, and snippets.

@codigoconjuan
Last active November 27, 2025 16:36
Show Gist options
  • Select an option

  • Save codigoconjuan/878895d47b07e01c523e3597b52ecd9e to your computer and use it in GitHub Desktop.

Select an option

Save codigoconjuan/878895d47b07e01c523e3597b52ecd9e to your computer and use it in GitHub Desktop.
Tabla de Usuarios de DevWebCamp
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