Skip to content

Instantly share code, notes, and snippets.

@adampatterson
Created October 22, 2012 16:36
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 adampatterson/3932401 to your computer and use it in GitHub Desktop.
Save adampatterson/3932401 to your computer and use it in GitHub Desktop.
Users
CREATE TABLE 'users' (
'id' bigint(20) unsigned NOT NULL AUTO_INCREMENT,
'email' varchar(100) NOT NULL DEFAULT '',
'username' varchar(60) NOT NULL DEFAULT '',
'password' varchar(64) NOT NULL DEFAULT '',
'type' varchar(25) DEFAULT NULL,
'data' text,
PRIMARY KEY ('id')
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment