apps/com.actionsoft.apps.kms/db/1.5/mysql.sql
2024-10-21 15:20:04 +08:00

2 lines
488 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

CREATE TABLE APP_ACT_KMS_XP_CATEGORY (`ID` char(36) NOT NULL DEFAULT '' COMMENT '主键 UUID标识UUIDGener.getUUID()',`CATEGORYNAME` varchar(400) DEFAULT NULL COMMENT '分类' ,PRIMARY KEY (`ID`));
CREATE TABLE APP_ACT_KMS_XP_CATEGORY_CARDS (`ID` char(36) NOT NULL DEFAULT '' COMMENT '主键 UUID标识UUIDGener.getUUID()',`CATEGORYNAME` varchar(400) DEFAULT NULL COMMENT '分类ID',`CARDID` char(36) DEFAULT NULL COMMENT '知识ID',`ORDERINDEX` int DEFAULT 0, PRIMARY KEY (`ID`));