1 Star 1 Fork 0

007lz/go-tinyid

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
sql.sql 673 Bytes
一键复制 编辑 原始数据 按行查看 历史
lizhen 提交于 2023-10-30 19:43 . 添加readme
create table if not exists test.sequence
(
id bigint unsigned auto_increment primary key,
biz varchar(128) default '' not null comment '业务类型',
value bigint default 0 not null comment 'id值',
version bigint default 0 not null comment '乐观锁',
is_del tinyint default 0 not null comment '是否软删标志',
create_time timestamp default CURRENT_TIMESTAMP not null comment '创建时间',
update_time timestamp default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP,
unique (version)
) charset = utf8mb4;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/git-lz/go-tinyid.git
git@gitee.com:git-lz/go-tinyid.git
git-lz
go-tinyid
go-tinyid
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385