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.
17 lines
757 B
SQL
17 lines
757 B
SQL
create table tb_crdn_file
|
|
(
|
|
FILE_ID varchar(20) not null comment '파일 ID'
|
|
primary key,
|
|
CRDN_YR char(4) null comment '단속 연도',
|
|
CRDN_NO varchar(6) null comment '단속 번호',
|
|
ORIGINAL_FILE_NM varchar(200) not null comment '원본 파일명',
|
|
STORED_FILE_NM varchar(200) not null comment '저장 파일명',
|
|
FILE_PATH varchar(200) not null comment '파일 경로',
|
|
FILE_SIZE bigint not null comment '파일 크기',
|
|
FILE_EXT varchar(10) not null comment '파일 확장자',
|
|
REG_DTTM datetime null comment '등록 일시',
|
|
RGTR varchar(20) null comment '등록자'
|
|
)
|
|
comment '단속관련 파일 파일';
|
|
|