12345678910 |
- -- portal.tip_info definition
- CREATE TABLE `tip_info`
- (
- `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键ID',
- `content` text COMMENT '内容',
- `create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- PRIMARY KEY (`id`) USING BTREE,
- KEY `idx_tip_info_create_time` (`create_time`) USING BTREE
- ) COMMENT='飘窗信息';
|