share-platform/config/db/V8.1__add_table.sql

35 lines
1.0 KiB
SQL

/*
Navicat Premium Data Transfer
Source Server : 192.168.124.46
Source Server Type : MySQL
Source Server Version : 80030
Source Host : 192.168.124.46:3306
Source Schema : share_platform
Target Server Type : MySQL
Target Server Version : 80030
File Encoding : 65001
Date: 01/12/2022 18:12:20
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for sys_notice_management
-- ----------------------------
DROP TABLE IF EXISTS `sys_notice_management`;
CREATE TABLE `sys_notice_management` (
`id` bigint(0) NOT NULL,
`content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
`publish_time` datetime(0) NULL DEFAULT NULL,
`del_flag` int(0) NULL DEFAULT NULL,
`create_date` datetime(0) NULL DEFAULT NULL,
`creator` bigint(0) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
SET FOREIGN_KEY_CHECKS = 1;