From b4cf03de7bd94335aa541563661ce6fd97797e27 Mon Sep 17 00:00:00 2001 From: luchenqun Date: Fri, 9 Mar 2018 16:54:16 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=A4=A7notes.content=E7=9A=84?= =?UTF-8?q?=E5=AE=B9=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema.sql b/schema.sql index c21e5e4..4531379 100644 --- a/schema.sql +++ b/schema.sql @@ -89,7 +89,7 @@ drop table if exists notes; CREATE TABLE `notes` ( `id` int(11) NOT NULL AUTO_INCREMENT, -- id `user_id` int(11) NOT NULL, -- 用户id - `content` varchar(4096) DEFAULT NULL, -- 备忘内容 + `content` varchar(8092) DEFAULT NULL, -- 备忘内容 `tag_id` int(11) DEFAULT NULL, -- 分类id `created_at` datetime DEFAULT now(), -- 创建时间 PRIMARY KEY (`id`)