Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created November 25, 2019 21:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/b27b6fda66e81f1882e5fafe3efc6542 to your computer and use it in GitHub Desktop.
Save parzibyte/b27b6fda66e81f1882e5fafe3efc6542 to your computer and use it in GitHub Desktop.
CREATE TABLE `mascotas` (
`id` bigint(20) UNSIGNED NOT NULL primary key AUTO_INCREMENT,
`nombre` varchar(255) NOT NULL,
`raza` varchar(255) NOT NULL,
`edad` tinyint(4) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment