You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
911 B
MySQL
32 lines
911 B
MySQL
|
9 months ago
|
/*
|
||
|
|
Navicat Premium Data Transfer
|
||
|
|
|
||
|
|
Source Server : Mysql(本地)
|
||
|
|
Source Server Type : MySQL
|
||
|
|
Source Server Version : 50729
|
||
|
|
Source Host : localhost:3305
|
||
|
|
Source Schema : imagedb
|
||
|
|
|
||
|
|
Target Server Type : MySQL
|
||
|
|
Target Server Version : 50729
|
||
|
|
File Encoding : 65001
|
||
|
|
|
||
|
|
Date: 02/12/2022 09:40:10
|
||
|
|
*/
|
||
|
|
|
||
|
|
SET NAMES utf8mb4;
|
||
|
|
SET FOREIGN_KEY_CHECKS = 0;
|
||
|
|
|
||
|
|
-- ----------------------------
|
||
|
|
-- Table structure for changerecord
|
||
|
|
-- ----------------------------
|
||
|
|
DROP TABLE IF EXISTS `changerecord`;
|
||
|
|
CREATE TABLE `changerecord` (
|
||
|
|
`uuid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
|
||
|
|
`modifytime` datetime(0) NULL DEFAULT NULL,
|
||
|
|
`explaintext` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL,
|
||
|
|
PRIMARY KEY (`uuid`) USING BTREE
|
||
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Dynamic;
|
||
|
|
|
||
|
|
SET FOREIGN_KEY_CHECKS = 1;
|