sql更新

This commit is contained in:
2025-05-14 16:05:34 +08:00
parent 2299813664
commit bc5bb19a14

View File

@@ -1,17 +1,17 @@
/* /*
Navicat Premium Dump SQL Navicat Premium Dump SQL
Source Server : 开发库(本地) Source Server : 测试库
Source Server Type : MySQL Source Server Type : MySQL
Source Server Version : 80404 (8.4.4) Source Server Version : 80404 (8.4.4)
Source Host : localhost:3310 Source Host : 101.43.12.11:3306
Source Schema : nl_admin Source Schema : nl_admin
Target Server Type : MySQL Target Server Type : MySQL
Target Server Version : 80404 (8.4.4) Target Server Version : 80404 (8.4.4)
File Encoding : 65001 File Encoding : 65001
Date: 12/05/2025 17:07:23 Date: 14/05/2025 15:53:57
*/ */
SET NAMES utf8mb4; SET NAMES utf8mb4;
@@ -101,6 +101,26 @@ CREATE TABLE `nl_api_op_log` (
-- Records of nl_api_op_log -- Records of nl_api_op_log
-- ---------------------------- -- ----------------------------
-- ----------------------------
-- Table structure for nl_code_generation
-- ----------------------------
DROP TABLE IF EXISTS `nl_code_generation`;
CREATE TABLE `nl_code_generation` (
`id` int UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '用户ID',
`title` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '菜单标题',
`file_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '文件名称',
`path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '下载链接',
`params` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '生成参数',
`created_at` int NOT NULL DEFAULT 0 COMMENT '创建时间',
`updated_at` int NOT NULL DEFAULT 0 COMMENT '更新时间',
`deleted_at` int NOT NULL DEFAULT 0 COMMENT '删除时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '代码生成记录' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of nl_code_generation
-- ----------------------------
-- ---------------------------- -- ----------------------------
-- Table structure for nl_file -- Table structure for nl_file
-- ---------------------------- -- ----------------------------