Complete core functions #9

Merged
FatttSnake merged 171 commits from FatttSnake into dev 2024-02-23 11:56:35 +08:00
Showing only changes of commit 1848ba3abe - Show all commits

View File

@@ -0,0 +1,12 @@
drop table if exists t_tools;
create table if not exists t_tools (
id bigint not null primary key ,
name varchar(50) not null comment '工具名',
tool_id varchar(50) not null comment '工具 ID',
description varchar(500) null comment '简介',
version varchar(20) not null comment '版本',
private int not null default 0 comment '私有',
keyword varchar(500) not null comment '关键字',
category varchar(500) not null comment '类别'
)