here it is:
CREATE TABLE users (
username varchar(30),
password varchar(32));
Of course this table can be modified according to your needs, however the password field must not be less than 32 because it has to store the md5 encrypted versions of passwords which are 32 bytes...