9 lines
314 B
SQL
9 lines
314 B
SQL
alter table "RUOYI-VUE-PRO".SYSTEM_DEPT
|
|
add IS_COMPANY BIT default 0 not null;
|
|
comment
|
|
on column "RUOYI-VUE-PRO".SYSTEM_DEPT.IS_COMPANY is '是否公司';
|
|
alter table "RUOYI-VUE-PRO".SYSTEM_DEPT
|
|
add IS_GROUP BIT default 0 not null;
|
|
comment
|
|
on column "RUOYI-VUE-PRO".SYSTEM_DEPT.IS_GROUP is '是否集团';
|