CREATE DATABASE IF NOT EXISTS teste_php_my;
USE teste_php_my;
DROP TABLE IF EXISTS `editoria`;
CREATE TABLE `editoria` (
`ideditoria` int(10) unsigned NOT NULL auto_increment,
`nome` varchar(100) NOT NULL,
`descricao` text NOT NULL,
PRIMARY KEY (`ideditoria`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|