加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ex_notify.sql 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
/*
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;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化