#==============================================================# # Table: user_auth_hash #==============================================================# CREATE TABLE if not exists user_auth_hash ( usr_id int(11) NOT NULL default '0', username varchar(64) NOT NULL, hash varchar(64) NOT NULL, createtime int(11) NOT NULL, PRIMARY KEY (usr_id) ) ENGINE=MyISAM;