Skip to content

Instantly share code, notes, and snippets.

@hanafiah
Created March 6, 2014 02:01
Show Gist options
  • Save hanafiah/9380733 to your computer and use it in GitHub Desktop.
Save hanafiah/9380733 to your computer and use it in GitHub Desktop.
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