1
0
Fork 0
picobloggingsys/initialize-tables.md

11 lines
190 B
Markdown
Raw Normal View History

2016-10-31 02:03:23 +08:00
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
)
```