Log in to your MySQL server, then run the following: ``` CREATE TABLE microblog ( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, txt VARCHAR(240) NOT NULL, tim VARCHAR(20) NOT NULL ) ```