- 添加 leaf-segment 分布式ID配置表及初始数据 fix(pom):修正模块 artifactId 命名 - 将 han-note-api 模块名称更正为 han-note-note-api
18 lines
676 B
SQL
18 lines
676 B
SQL
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;
|
|
|
|
|