Created
February 20, 2015 02:30
-
-
Save TiuTalk/264a21d7ccefccb2702b to your computer and use it in GitHub Desktop.
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 IF NOT EXISTS `noticias` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`titulo` varchar(255) NOT NULL, | |
`texto` longtext NOT NULL, | |
`cadastro` datetime NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `titulo` (`titulo`) | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment