From f1a08963b64b4af513f0f546cd3d7d0cd2c04934 Mon Sep 17 00:00:00 2001 From: LyLme Date: Sat, 5 Mar 2022 14:49:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=20v1.1.1=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=BA=93=E6=9B=B4=E6=96=B0=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install/update.sql | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/install/update.sql b/install/update.sql index f9ddb30..29eb2b3 100644 --- a/install/update.sql +++ b/install/update.sql @@ -11,18 +11,15 @@ CREATE TABLE `lylme_sou` ( `sou_st` int(1) NOT NULL DEFAULT '1' COMMENT '搜索引擎开关', `sou_order` int(2) NOT NULL COMMENT '搜索引擎排序' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='搜索引擎'; - INSERT INTO `lylme_sou` (`sou_id`, `sou_alias`, `sou_name`, `sou_hint`, `sou_color`, `sou_link`, `sou_waplink`, `sou_icon`, `sou_st`, `sou_order`) VALUES (1, 'baidu', '百度一下', '百度一下,你就知道', '#0c498c', 'https://www.baidu.com/s?word=', 'https://m.baidu.com/s?word=', '', 1, 1), (2, 'sogou', '搜狗搜索', '上网从搜狗开始', '#696a6d', 'https://www.sogou.com/web?query=', NULL, '', 1, 2), (3, 'bing', 'Bing必应', '微软必应搜索', '#696a6d', 'https://cn.bing.com/search?q=', NULL, '', 1, 3), (4, 'zhihu', '知乎搜索', '有问题,上知乎', '#0084fe', 'https://www.zhihu.com/search?q=', NULL, '', 1, 4), (5, 'bilibili', '哔哩哔哩', '(゜-゜)つロ 干杯~', '#00aeec', 'https://search.bilibili.com/all?keyword=', NULL, '', 1, 5), -(6, 'weibo', '微博搜索', '随时随地发现新鲜事', '#ff5722', 'https://s.weibo.com/weibo/', '', '', 1, 6), -(7, 'google', '谷歌搜索', '值得信任的搜索引擎', '#3B83FA', 'https://www.google.com.hk/search?hl=zh-CN&q=', '', '', 1, 7), +(6, 'weibo', '微博搜索', '随时随地发现新鲜事', '#ff5722', 'https://s.weibo.com/weibo/', NULL, '', 1, 6), +(7, 'google', '谷歌搜索', '值得信任的搜索引擎', '#3B83FA', 'https://www.google.com.hk/search?hl=zh-CN&q=', NULL, '', 1, 7), (8, 'fanyi', '在线翻译', '输入翻译内容(自动检测语言)', '#0084fe', 'https://translate.google.cn/?hl=zh-CN&sl=auto&tl=zh-CN&text=', NULL, '', 1, 8); - --- ALTER TABLE `lylme_sou` ADD PRIMARY KEY (`sou_id`); ALTER TABLE `lylme_sou` @@ -31,7 +28,6 @@ COMMIT; -- 表`lylme_tags` - CREATE TABLE `lylme_tags` ( `tag_id` int(11) NOT NULL, `tag_name` varchar(30) NOT NULL,