You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
379 B
12 lines
379 B
4 years ago
|
-- ----------------------------
|
||
|
-- 层级字段重命名
|
||
|
-- ----------------------------
|
||
|
ALTER TABLE "blade_region" RENAME COLUMN "level" TO "region_level";
|
||
|
|
||
|
-- ----------------------------
|
||
|
-- 增加用户平台字段
|
||
|
-- ----------------------------
|
||
|
ALTER TABLE "blade_user"
|
||
|
ADD COLUMN "user_type" int2;
|
||
|
COMMENT ON COLUMN "public"."blade_user"."user_type" IS '用户平台';
|