houzhongjian
3 天以前 17ad2acbc82465e8cc786df98e5b967b9c210b15
1
2
3
4
5
6
7
8
9
10
-- 将该建表 SQL 语句,添加到 iailab-module-infra-biz 模块的 test/resources/sql/create_tables.sql 文件里
CREATE TABLE IF NOT EXISTS "infra_category" (
    "id" bigint NOT NULL GENERATED BY DEFAULT AS IDENTITY,
    "name" varchar NOT NULL,
    "description" bigint NOT NULL,
    PRIMARY KEY ("id")
) COMMENT '分类表';
 
-- 将该删表 SQL 语句,添加到 iailab-module-infra-biz 模块的 test/resources/sql/clean.sql 文件里
DELETE FROM "infra_category";