/* Navicat Premium Data Transfer Source Server : 127.0.0.1_mysql Source Server Type : MySQL Source Server Version : 50741 (5.7.41-log) Source Host : localhost:3306 Source Schema : hjems Target Server Type : MySQL Target Server Version : 50741 (5.7.41-log) File Encoding : 65001 Date: 03/12/2024 22:04:12 */ SET NAMES utf8mb4; 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 ) ENGINE = MyISAM CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- 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;