From fbfc7c321f60c11907a853745b1c52a6be65864c Mon Sep 17 00:00:00 2001 From: Ambrose Chua Date: Mon, 31 Oct 2016 02:43:14 +0800 Subject: [PATCH] Made text and time longer. --- initialize-tables.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/initialize-tables.md b/initialize-tables.md index 6b9825a..4ef7306 100644 --- a/initialize-tables.md +++ b/initialize-tables.md @@ -4,7 +4,7 @@ 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 +txt VARCHAR(320) NOT NULL, +tim VARCHAR(40) NOT NULL ) ```