Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. DROP TABLE IF EXISTS `cad_materia`;
  2. CREATE TABLE IF NOT EXISTS `cad_materia` (
  3. `php_id` int(11) NOT NULL AUTO_INCREMENT,
  4. `php_titulo` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  5. `php_thumb` text CHARACTER SET latin1 NOT NULL,
  6. `php_texto` longtext NOT NULL,
  7. `php_categoria` text CHARACTER SET latin1 NOT NULL,
  8. `php_autor` text CHARACTER SET latin1 NOT NULL,
  9. `php_data` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  10. `php_chave` text CHARACTER SET latin1 NOT NULL,
  11. `url` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  12. `cod_user` char(255) CHARACTER SET latin1 NOT NULL,
  13. PRIMARY KEY (`php_id`)
  14. ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement