mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-25 16:35:06 +08:00
修复单元测试报错的问题
This commit is contained in:
@ -63,7 +63,7 @@ CREATE TABLE IF NOT EXISTS "member_level"
|
||||
"name" varchar NOT NULL,
|
||||
"experience" int NOT NULL,
|
||||
"level" int NOT NULL,
|
||||
"discount" int NOT NULL,
|
||||
"discount_percent" int NOT NULL,
|
||||
"icon" varchar NOT NULL,
|
||||
"background_url" varchar NOT NULL,
|
||||
"creator" varchar DEFAULT '',
|
||||
@ -72,7 +72,7 @@ CREATE TABLE IF NOT EXISTS "member_level"
|
||||
"update_time" datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
"deleted" bit NOT NULL DEFAULT FALSE,
|
||||
"tenant_id" bigint not null default '0',
|
||||
"status" int NOT NULL,
|
||||
"status" tinyint NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY ("id")
|
||||
) COMMENT '会员等级';
|
||||
|
||||
@ -81,7 +81,7 @@ CREATE TABLE IF NOT EXISTS "member_group"
|
||||
"id" bigint NOT NULL GENERATED BY DEFAULT AS IDENTITY,
|
||||
"name" varchar NOT NULL,
|
||||
"remark" varchar NOT NULL,
|
||||
"status" varchar NOT NULL,
|
||||
"status" tinyint NOT NULL DEFAULT '0',
|
||||
"creator" varchar DEFAULT '',
|
||||
"create_time" datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
"updater" varchar DEFAULT '',
|
||||
@ -89,4 +89,4 @@ CREATE TABLE IF NOT EXISTS "member_group"
|
||||
"deleted" bit NOT NULL DEFAULT FALSE,
|
||||
"tenant_id" bigint not null default '0',
|
||||
PRIMARY KEY ("id")
|
||||
) COMMENT '用户分组';
|
||||
) COMMENT '用户分组';
|
||||
|
Reference in New Issue
Block a user