7 lines
137 B
SQL
7 lines
137 B
SQL
create table fad_oa.sys_oa_task_user
|
|
(
|
|
user_id bigint not null comment '主键',
|
|
task_id bigint not null comment '任务键'
|
|
);
|
|
|