1
0
Fork 0
picobloggingsys/initialize-tables.md

190 B

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
)