16 lines
353 B
MySQL
16 lines
353 B
MySQL
|
-- 评价规则表添加字段
|
||
|
alter table org_scoring_rule
|
||
|
add `name` varchar(64) not null comment '名称' after id;
|
||
|
|
||
|
-- 创建表
|
||
|
create table org_scoring_rule_rel
|
||
|
(
|
||
|
org_id int not null,
|
||
|
rule_id bigint not null
|
||
|
)
|
||
|
comment '班级与评价规则关联表';
|
||
|
|
||
|
-- 组织表添加字段
|
||
|
alter table org
|
||
|
add status varchar(1) not null comment '状态';
|