Merge remote-tracking branch 'origin/dev' into dev
commit
c024796a44
@ -0,0 +1,20 @@
|
||||
create table tb_crdn_photo
|
||||
(
|
||||
ACT_INFO_ID varchar(10) not null comment '행위 정보 ID',
|
||||
CRDN_PHOTO_SN varchar(2) not null comment '단속 사진 순번',
|
||||
SGG_CD varchar(5) null comment '시군구 코드',
|
||||
CRDN_YR char(4) null comment '단속 연도',
|
||||
CRDN_NO varchar(6) null comment '단속 번호',
|
||||
CRDN_PHOTO_PATH varchar(100) null comment '단속 사진 경로',
|
||||
CRDN_PHOTO_NM varchar(500) null comment '단속 사진 명',
|
||||
CRDN_PHOTO_SE_CD char not null comment '단속 사진 구분 코드',
|
||||
ORGNL_PHOTO_NM varchar(500) null comment '원본 사진 명',
|
||||
REG_DT datetime null comment '등록 일시',
|
||||
RGTR varchar(11) null comment '등록자',
|
||||
DEL_YN char not null comment '삭제 여부',
|
||||
DEL_DT datetime null comment '삭제 일시',
|
||||
DLTR varchar(11) null comment '삭제자',
|
||||
primary key (ACT_INFO_ID, CRDN_PHOTO_SN)
|
||||
)
|
||||
comment '단속 사진';
|
||||
|
||||
Loading…
Reference in New Issue