fix: 사고발생일(dsuse_acdt_de) 처리
parent
b906f33f79
commit
626b759d4b
@ -1,3 +1,21 @@
|
||||
/* 폐기보고시 입력하는 비고 추가 */
|
||||
alter table tb_dsuse_mgt
|
||||
add dsuse_rmk varchar(512) null comment '폐기_비고' after dsuse_de;
|
||||
|
||||
/* 사고발생일 추가 */
|
||||
alter table tb_dsuse_mgt
|
||||
add dsuse_acdt_de varchar(8) null comment '사고발생일' after dsuse_de;
|
||||
|
||||
create or replace table tb_dsuse_rslt_img
|
||||
(
|
||||
dscdmng_rslt_img_id varchar(12) not null comment '폐기관리_결과_이미지_id',
|
||||
dscdmng_id varchar(12) not null comment '폐기관리_id',
|
||||
dsuse_mth_cd varchar(10) null comment '폐기_방법_코드',
|
||||
use_yn varchar(1) not null comment '사용_여부',
|
||||
reg_dt varchar(14) not null comment '등록_일시',
|
||||
rgtr varchar(10) not null comment '등록자',
|
||||
mdfcn_dt varchar(14) null comment '수정_일시',
|
||||
mdfr varchar(10) null comment '수정자',
|
||||
primary key (dscdmng_rslt_img_id, dscdmng_id)
|
||||
)
|
||||
comment '폐기관리_결과_이지지';
|
||||
|
Loading…
Reference in New Issue