feat(sql): 初始化频道、话题及关系数据

- 添加 leaf-segment 分布式ID配置表及初始数据

fix(pom):修正模块 artifactId 命名

- 将 han-note-api 模块名称更正为 han-note-note-api
This commit is contained in:
2025-10-11 23:31:26 +08:00
parent 3ce029ecce
commit eaa5586211
4 changed files with 31 additions and 7 deletions

17
sql/leafcreatetable.sql Normal file
View File

@@ -0,0 +1,17 @@
INSERT INTO `leaf`.`leaf` (`biz_tag`, `max_id`, `step`, `description`, `update_time`)
VALUES ('leaf-segment-hannote-id', 10100, 2000, '小憨书 ID', now());
INSERT INTO `leaf`.`leaf` (`biz_tag`, `max_id`, `step`, `description`, `update_time`)
VALUES ('leaf-segment-user-id', 100, 2000, '用户 ID', now());
CREATE TABLE `leaf`
(
`biz_tag` varchar(128) NOT NULL DEFAULT '',
`max_id` bigint(20) NOT NULL DEFAULT '1',
`step` int(11) NOT NULL,
`description` varchar(256) DEFAULT NULL,
`update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`biz_tag`)
) ENGINE = InnoDB;