From e8678357991ccdadcb97da828bd3fd4de6b0b59b Mon Sep 17 00:00:00 2001 From: taoshihan1991 <630892807@qq.com> Date: Fri, 19 Mar 2021 16:45:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B8=B8=E8=A7=81=E9=97=AE=E9=A2=98=E7=BB=99?= =?UTF-8?q?=E4=B8=AA=E9=BB=98=E8=AE=A4=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/go-fly.sql | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/config/go-fly.sql b/config/go-fly.sql index befd861..d7fc88a 100644 --- a/config/go-fly.sql +++ b/config/go-fly.sql @@ -143,7 +143,32 @@ PRIMARY KEY (`id`), UNIQUE KEY `page` (`page`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8| INSERT INTO `about` (`id`, `title_cn`, `title_en`, `keywords_cn`, `keywords_en`, `desc_cn`, `desc_en`, `css_js`, `html_cn`, `html_en`, `page`) VALUES -(NULL, '免费开源客服系统GOFLY0.3.6-演示页', 'Free Customer Live Chat GOFLY0.3.6-demo', 'GOFLY,GO-FLY', 'GOFLY,GO-FLY', '一款开箱即用的在线客服系统', 'HELLO GOFLY LIVE CHAT !', '','

:)

HELLO GOFLY LIVE CHAT !

Administrator English 中文

','

:)

HELLO GOFLY LIVE CHAT !

Administrator English 中文

','index')| +(NULL, '免费开源客服系统GOFLY0.3.7-演示页', +'Free Customer Live Chat GOFLY0.3.7-demo', +'GOFLY,GO-FLY', +'GOFLY,GO-FLY', +'一款开箱即用的在线客服系统', +'a free customer live chat', +'', +' +

:)

你好 GOFLY0.3.7 在线客服系统 !

Administrator English 中文

', +' +

:)

HELLO GOFLY0.3.7 LIVE CHAT !

Administrator English 中文

', + 'index')| DROP TABLE IF EXISTS `reply_group`| CREATE TABLE `reply_group` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -152,6 +177,7 @@ CREATE TABLE `reply_group` ( PRIMARY KEY (`id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8| +INSERT INTO `reply_group` (`id`, `group_name`, `user_id`) VALUES (NULL, '常见问题', 'kefu2')| DROP TABLE IF EXISTS `reply_item`| CREATE TABLE `reply_item` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -163,6 +189,7 @@ CREATE TABLE `reply_item` ( KEY `user_id` (`user_id`), KEY `group_id` (`group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8| +INSERT INTO `reply_item` (`id`, `content`, `group_id`, `user_id`, `item_name`) VALUES (NULL, '在这里[官网]link[https://gofly.sopans.com]!','1','kefu2', '官方地址在哪?')| DROP TABLE IF EXISTS `land_page`| CREATE TABLE `land_page` ( `id` int(11) NOT NULL,