Skip to content

Instantly share code, notes, and snippets.

@codigoconjuan
Created August 24, 2022 16:36
Show Gist options
  • Select an option

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

Select an option

Save codigoconjuan/bc4fa860d64ad04a1bd4836df825f0a8 to your computer and use it in GitHub Desktop.
Estructura de la Base de Datos de Categorias
CREATE TABLE `categorias` (
`id` int NOT NULL AUTO_INCREMENT,
`nombre` varchar(45) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 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