pastebin - collaborative debugging

pastebin is a collaborative debugging tool allowing you to share and modify code snippets while chatting on IRC, IM or a message board.

This site is developed to XHTML and CSS2 W3C standards. If you see this paragraph, your browser does not support those standards and you need to upgrade. Visit WaSP for a variety of options.

serietutorialci private pastebin - collaborative debugging tool What's a private pastebin?


Posted by Djalma Arajo on Sun 30 Aug 17:05
report abuse | download | new post

  1. --
  2. -- Estrutura da tabela `user`
  3. --
  4.  
  5. CREATE TABLE IF NOT EXISTS `user` (
  6.   `id` int(11) NOT NULL AUTO_INCREMENT,
  7.   `name` varchar(100) NOT NULL,
  8.   `email` varchar(100) NOT NULL,
  9.   `password` varchar(60) NOT NULL,
  10.   `status` int(11) NOT NULL DEFAULT '1',
  11.   `privileges` int(11) NOT NULL,
  12.   `created_at` datetime NOT NULL,
  13.   `updated_at` datetime NOT NULL,
  14.   PRIMARY KEY (`id`)
  15. ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
  16.  
  17. --
  18. -- Extraindo dados da tabela `user`
  19. --

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with @@


Remember me so that I can delete my post