emsApplication/appRelease/mysql/tbl_topic.sql

37 lines
1.0 KiB
MySQL
Raw Normal View History

2024-06-04 13:36:17 +08:00
/*
Navicat Premium Data Transfer
2024-12-03 22:06:29 +08:00
Source Server : 127.0.0.1_mysql
2024-06-04 13:36:17 +08:00
Source Server Type : MySQL
2024-12-03 22:06:29 +08:00
Source Server Version : 50741 (5.7.41-log)
Source Host : localhost:3306
2024-06-04 13:36:17 +08:00
Source Schema : hjems
Target Server Type : MySQL
2024-12-03 22:06:29 +08:00
Target Server Version : 50741 (5.7.41-log)
2024-06-04 13:36:17 +08:00
File Encoding : 65001
2024-12-03 22:06:29 +08:00
Date: 03/12/2024 22:04:12
2024-06-04 13:36:17 +08:00
*/
2024-12-03 22:06:29 +08:00
SET NAMES utf8mb4;
2024-06-04 13:36:17 +08:00
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for tbl_topic
-- ----------------------------
DROP TABLE IF EXISTS `tbl_topic`;
CREATE TABLE `tbl_topic` (
`topic_id` int(11) NOT NULL,
`topic` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`topic_id`) USING BTREE
2024-12-03 22:06:29 +08:00
) ENGINE = MyISAM CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC;
2024-06-04 13:36:17 +08:00
-- ----------------------------
-- Records of tbl_topic
-- ----------------------------
INSERT INTO `tbl_topic` VALUES (0, 'GateWayPublicTopic_Server');
INSERT INTO `tbl_topic` VALUES (1, 'ServerPublicTopic_GateWay');
SET FOREIGN_KEY_CHECKS = 1;