Created
October 22, 2012 16:36
-
-
Save adampatterson/3932401 to your computer and use it in GitHub Desktop.
Users
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' 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