Created
August 18, 2022 22:21
-
-
Save codigoconjuan/f4026ad5b0e4136e3f4528967327f5ad to your computer and use it in GitHub Desktop.
Base de Datos Ponentes - 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 `ponentes` ( | |
| `id` int NOT NULL AUTO_INCREMENT, | |
| `nombre` varchar(40) DEFAULT NULL, | |
| `apellido` varchar(40) DEFAULT NULL, | |
| `ciudad` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL, | |
| `pais` varchar(20) DEFAULT NULL, | |
| `imagen` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL, | |
| `tags` varchar(120) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL, | |
| `redes` text, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=InnoDB AUTO_INCREMENT=19 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