Skip to content

Instantly share code, notes, and snippets.

Created January 15, 2017 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/6491d9844c53799d6bc210f17b603654 to your computer and use it in GitHub Desktop.
Save anonymous/6491d9844c53799d6bc210f17b603654 to your computer and use it in GitHub Desktop.
CREATE TABLE IF NOT EXISTS `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`hash` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment