From 4ee24754fa5bf4badf28b797501a41a85c8ce7e1 Mon Sep 17 00:00:00 2001 From: WispX <1591788658@qq.com> Date: Mon, 2 Mar 2020 07:39:58 +0800 Subject: [PATCH] :bookmark: Releasing / Version tags. --- install.sql | 2 +- update.sql | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/install.sql b/install.sql index 7fc7552f..6666fb9f 100644 --- a/install.sql +++ b/install.sql @@ -166,6 +166,6 @@ INSERT INTO `lsky_config` (`id`, `key`, `type`, `input_type`, `name`, `title`, ` (NULL, 'audit', 'text', 'text', 'audit_key', 'Key', NULL, '', ''), (NULL, 'audit', 'select', 'text', 'audit_index', '内容评级', '1=所有人,2=少年,3=成人', '3', '{\"1\": \"所有人\", \"2\": \"少年\", \"3\": \"成人\"}'), -(NULL, '', 'text', 'text', 'system_version', '系统版本', NULL, '1.5.6', ''); +(NULL, '', 'text', 'text', 'system_version', '系统版本', NULL, '1.5.7', ''); INSERT INTO `lsky_group` (`id`, `strategy`, `name`, `default`, `update_time`, `create_time`) VALUES (NULL, 'local', '默认组', '1', '0', '0'); diff --git a/update.sql b/update.sql index 1b7951d3..6b4386f2 100644 --- a/update.sql +++ b/update.sql @@ -90,3 +90,6 @@ INSERT IGNORE INTO `lsky_config` (`id`, `key`, `type`, `input_type`, `name`, `ti -- v1.5.6 UPDATE `lsky_config` SET `value` = '1.5.6' WHERE `lsky_config`.`name` = 'system_version'; + +-- v1.5.7 +UPDATE `lsky_config` SET `value` = '1.5.7' WHERE `lsky_config`.`name` = 'system_version';