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.
18 lines
834 B
SQL
18 lines
834 B
SQL
create table tb_bbs_notice_sample
|
|
(
|
|
NOTICE_ID varchar(20) not null comment '게시판 ID'
|
|
primary key,
|
|
TITLE varchar(200) not null comment '제목',
|
|
CONTENT text not null comment '내용',
|
|
WRITER_NM varchar(50) not null comment '작성자 이름',
|
|
VIEW_CNT int default 0 null comment '조회수',
|
|
NOTICE_YN varchar(1) default 'N' 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 '게시판';
|
|
|