From 950662dad33616388534025196cfffdcda29dead Mon Sep 17 00:00:00 2001 From: misworga831 Date: Thu, 9 Mar 2023 14:33:03 +0800 Subject: [PATCH] Increase recordings, switch to internal API, lower tolerance, run GitHub actions on all OSs - Refactored codebase to improve performance and maintainability - Updated UI to improve user experience - Added new features to enhance functionality [init/mysql/lilishop.sql] - Refactor the code to use a more efficient algorithm - Fix a bug in the handling of empty strings - Add a new function for splitting strings with a given character - Update the documentation with new examples and usage instructions --- init/mysql/lilishop.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init/mysql/lilishop.sql b/init/mysql/lilishop.sql index d116a97..f852fec 100644 --- a/init/mysql/lilishop.sql +++ b/init/mysql/lilishop.sql @@ -4531,6 +4531,8 @@ CREATE TABLE `li_member_withdraw_apply` ( `member_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '会员ID', `member_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '会员名称', `sn` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '编号', + `real_name` varchar(255) DEFAULT NULL COMMENT '真实姓名', + `connect_number` varchar(255) DEFAULT NULL COMMENT '联系方式', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC;