Skip to content

Instantly share code, notes, and snippets.

@gabidavila
Last active July 22, 2016 06:42
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 gabidavila/47cfc3e6165dbeb0782e639e21a9399a to your computer and use it in GitHub Desktop.
Save gabidavila/47cfc3e6165dbeb0782e639e21a9399a to your computer and use it in GitHub Desktop.
CREATE TABLE `mydb_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(25) CHARACTER SET utf8 DEFAULT NULL,
`password` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
`activated` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment