Created
March 6, 2014 02:01
-
-
Save hanafiah/9380733 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 users ( | |
id INT(11) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, | |
username VARCHAR(20) NOT NULL, | |
full_name VARCHAR(80) NOT NULL, | |
password VARCHAR(40) NOT NULL, | |
salt VARCHAR(40) DEFAULT NULL, | |
email VARCHAR(80) NOT NULL | |
) | |
ENGINE InnoDB; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment