feat(sql): 初始化频道、话题及关系数据
- 添加 leaf-segment 分布式ID配置表及初始数据 fix(pom):修正模块 artifactId 命名 - 将 han-note-api 模块名称更正为 han-note-note-api
This commit is contained in:
17
sql/leafcreatetable.sql
Normal file
17
sql/leafcreatetable.sql
Normal 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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user