Created
September 23, 2015 18:09
-
-
Save vaneves/72e681d52ee3bc7129b2 to your computer and use it in GitHub Desktop.
Curso Ninja - SQL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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