You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1.1 KiB
SQL
22 lines
1.1 KiB
SQL
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 '단속 사진 구분 코드',
|
|
AACTN_INFO_ID varchar(10) null comment '조치 정보 ID';
|
|
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 '단속 사진';
|
|
|