Skip to content

Instantly share code, notes, and snippets.

@TiuTalk
Last active December 16, 2015 12:49
Show Gist options
  • Save TiuTalk/5437292 to your computer and use it in GitHub Desktop.
Save TiuTalk/5437292 to your computer and use it in GitHub Desktop.
CREATE TABLE IF NOT EXISTS `usuarios` (
`id` INT(10) unsigned NOT NULL AUTO_INCREMENT,
`nome` VARCHAR(100) NOT NULL,
`usuario` VARCHAR(50) NOT NULL,
`senha` CHAR(40) NOT NULL,
PRIMARY KEY (`id`)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment