◆ t_board - 게시판 테이블 생성
페이지 정보
작성자 관리자 작성일 24-06-06 11:24 조회 60 댓글 0본문
create table t_board (
board_idx int auto_increment primary key,
title varchar(255),
contents text,
hit_cnt int default 0,
created_datetime datetime,
creator_id varchar(20),
updated_datetime datetime,
updater_id varchar(20),
deleted_yn char(1) default 'N'
);
댓글목록 0
등록된 댓글이 없습니다.