1
0
Fork 0

Forgotten about pluses row...

master
Ambrose Chua 2016-10-31 02:49:05 +08:00
parent fbfc7c321f
commit 3500a04176
1 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ Log in to your MySQL server, then run the following:
CREATE TABLE microblog (
id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
txt VARCHAR(320) NOT NULL,
tim VARCHAR(40) NOT NULL
tim VARCHAR(40) NOT NULL,
pluses INT(6) UNSIGNED DEFAULT 0
)
```