Skip to content

Instantly share code, notes, and snippets.

@vaneves
Created September 23, 2015 18:09
Show Gist options
  • Save vaneves/72e681d52ee3bc7129b2 to your computer and use it in GitHub Desktop.
Save vaneves/72e681d52ee3bc7129b2 to your computer and use it in GitHub Desktop.
Curso Ninja - SQL
CREATE TABLE `posts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(128) NOT NULL,
`date` datetime NOT NULL,
`content` text NOT NULL,
PRIMARY KEY (`id`)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment