create table tb_bbs_config ( BBS_ID varchar(20) not null comment '게시판 ID' primary key, BBS_NM varchar(100) not null comment '게시판 이름', BBS_TYPE_CD varchar(20) not null comment '게시판 종류 (코드 테이블 참조)', BBS_DC varchar(200) null comment '게시판 설명', UPLOAD_YN varchar(1) default 'N' not null comment '업로드 가능 여부', UPLOAD_FILE_CNT int default 0 null comment '업로드 파일 개수', COMMENT_YN varchar(1) default 'N' not null comment '댓글 기능 사용 여부', TUI_EDITOR_YN varchar(1) default 'N' not null comment 'TUI 에디터 사용 여부', NOTICE_YN varchar(1) default 'N' not null comment '상단 고정 사용 여부', USE_YN varchar(1) default 'Y' not null comment '사용 여부', REG_DTTM datetime null comment '등록 일시', RGTR varchar(20) null comment '등록자', MDFCN_DTTM datetime null comment '수정 일시', MDFR varchar(20) null comment '수정자' ) comment '게시판 설정';