Advertisement
yeshuadesign

Untitled

Aug 1st, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1.  
  2. --
  3.  
  4. CREATE TABLE IF NOT EXISTS `usuarios_online` (
  5.  
  6. `id` int(11) NOT NULL AUTO_INCREMENT,
  7.  
  8. `sessao` text NOT NULL,
  9.  
  10. `tempo` text NOT NULL,
  11.  
  12. `ip` text NOT NULL,
  13.  
  14. PRIMARY KEY (`id`)
  15. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
  16.  
  17.  
  18.  
  19. --CREATE TABLE IF NOT EXISTS `contador` (
  20. `id` int(11) NOT NULL AUTO_INCREMENT,
  21. `visitas` text NOT NULL,
  22. PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement