-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathrule_table.sql
executable file
·36 lines (29 loc) · 1.01 KB
/
rule_table.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
Navicat Premium Data Transfer
Source Server : 127.0.0.1
Source Server Type : MySQL
Source Server Version : 80037
Source Host : 127.0.0.1:3306
Source Schema : vuln_scan_database
Target Server Type : MySQL
Target Server Version : 80037
File Encoding : 65001
Date: 21/07/2024 19:08:58
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for rule_table
-- ----------------------------
DROP TABLE IF EXISTS `rule_table`;
CREATE TABLE `rule_table` (
`id` int(0) NOT NULL AUTO_INCREMENT,
`rule` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of rule_table
-- ----------------------------
INSERT INTO `rule_table` VALUES (2, 'Struts2');
INSERT INTO `rule_table` VALUES (3, 'Shiro');
SET FOREIGN_KEY_CHECKS = 1;