Skip to content

Instantly share code, notes, and snippets.

Created November 21, 2013 02:27
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 anonymous/7575117 to your computer and use it in GitHub Desktop.
Save anonymous/7575117 to your computer and use it in GitHub Desktop.
CREATE TABLE `proyecto` (
`id_proyecto` int(11) NOT NULL,
`nombre` varchar(45) DEFAULT NULL,
`responsable` varchar(45) DEFAULT NULL,
`estado` varchar(45) DEFAULT NULL,
`fecha_inicio` varchar(45) DEFAULT NULL,
`historial` varchar(45) DEFAULT NULL,
PRIMARY KEY (`id_proyecto`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment