代码拉取完成,页面将自动刷新
/*
Navicat Premium Data Transfer
Source Server : 我的本地数据库
Source Server Type : MySQL
Source Server Version : 80030
Source Host : localhost:3306
Source Schema : socialdb
Target Server Type : MySQL
Target Server Version : 80030
File Encoding : 65001
Date: 21/11/2023 16:53:57
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for ex_notify
-- ----------------------------
DROP TABLE IF EXISTS `ex_notify`;
CREATE TABLE `ex_notify` (
`notify_id` bigint NOT NULL AUTO_INCREMENT,
`post_id` bigint NULL DEFAULT 0,
`post_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
`is_reply` int NULL DEFAULT 0,
`is_quote` int NULL DEFAULT 0,
`is_liked` int NULL DEFAULT 0,
`is_foyou` int NULL DEFAULT 0,
`opr_user_id` bigint NULL DEFAULT 0,
`current_user_id` bigint NULL DEFAULT 0,
`is_readed` int NULL DEFAULT 0,
`notify_time` datetime NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`notify_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of ex_notify
-- ----------------------------
INSERT INTO `ex_notify` VALUES (5, 249, '测试发送消息', 0, 1, 0, 0, 2, 1, 0, '2023-11-21 16:25:50');
INSERT INTO `ex_notify` VALUES (6, 249, '测试发送', 1, 0, 0, 0, 2, 1, 0, '2023-11-21 16:40:28');
SET FOREIGN_KEY_CHECKS = 1;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。