This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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