| 123456789101112131415161718192021222324252627282930313233343536 |
- /*
- Navicat Premium Data Transfer
- Source Server : localhost
- Source Server Type : MySQL
- Source Server Version : 50744
- Source Host : localhost:3306
- Source Schema : virtual_mall
- Target Server Type : MySQL
- Target Server Version : 50744
- File Encoding : 65001
- Date: 19/04/2024 17:26:34
- */
- SET NAMES utf8mb4;
- SET FOREIGN_KEY_CHECKS = 0;
- -- ----------------------------
- -- Table structure for authority
- -- ----------------------------
- DROP TABLE IF EXISTS `authority`;
- CREATE TABLE `authority` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `authority_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
- `authority_path` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
- PRIMARY KEY (`id`) USING BTREE
- ) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
- -- ----------------------------
- -- Records of authority
- -- ----------------------------
- INSERT INTO `authority` VALUES (1, '登录', '/api/ping');
- SET FOREIGN_KEY_CHECKS = 1;
|