Files
hldrCenter/server/sql/meeting_speaker.sql
2025-10-28 22:57:18 +08:00

11 lines
689 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
CREATE TABLE `meeting_speaker` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '嘉宾ID主键',
`meeting_id` int(11) NOT NULL COMMENT '关联会议ID对应meeting表id',
`name` varchar(100) NOT NULL COMMENT '嘉宾姓名',
`title` varchar(200) DEFAULT '' COMMENT '嘉宾头衔XX公司技术总监',
`avatar` varchar(512) DEFAULT '' COMMENT '嘉宾头像URL',
`intro` text COMMENT '嘉宾简介',
`sort` int(11) DEFAULT 0 COMMENT '嘉宾排序(数字越小越靠前)',
PRIMARY KEY (`id`),
KEY `idx_meeting_id` (`meeting_id`) COMMENT '索引:优化按会议查询嘉宾'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='会议演讲嘉宾表';