Skip to content

Instantly share code, notes, and snippets.

@codigoconjuan
Created September 6, 2022 16:01
Show Gist options
  • Select an option

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

Select an option

Save codigoconjuan/ee04c6b6914bf2dd2725975a20fb278c to your computer and use it in GitHub Desktop.
Gist Base de Datos Paquetes
CREATE TABLE `paquetes` (
`id` int NOT NULL AUTO_INCREMENT,
`nombre` varchar(30) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
INSERT INTO `paquetes` (`id`, `nombre`) VALUES
(1, 'Presencial'),
(2, 'Virtual'),
(3, 'Gratis');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment