Posted by Djalma Arajo on Sun 30 Aug 17:05
report abuse | download | new post
- --
- -- Estrutura da tabela `user`
- --
- CREATE TABLE IF NOT EXISTS `user` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `name` varchar(100) NOT NULL,
- `email` varchar(100) NOT NULL,
- `password` varchar(60) NOT NULL,
- `status` int(11) NOT NULL DEFAULT '1',
- `privileges` int(11) NOT NULL,
- `created_at` datetime NOT NULL,
- `updated_at` datetime NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
- --
- -- Extraindo dados da tabela `user`
- --
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.