From 3500a041765d76e45b70e3e5d7661734662f31c8 Mon Sep 17 00:00:00 2001 From: Ambrose Chua Date: Mon, 31 Oct 2016 02:49:05 +0800 Subject: [PATCH] Forgotten about pluses row... --- initialize-tables.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/initialize-tables.md b/initialize-tables.md index 4ef7306..89fa615 100644 --- a/initialize-tables.md +++ b/initialize-tables.md @@ -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 ) ```