1. Member 테이블

컬럼명 자료형 제약 조건 설명
id int PK, NOT NULL ID
token string UK, NOT NULL 회원 토큰
nickname string NOT NULL 닉네임
profile_url string 프로필 이미지 URL
role string NOT NULL 권한
created_date_time date NOT NULL 생성일자
modified_date_time date 수정일자

2. Member_Login_History 테이블

컬럼명 자료형 제약 조건 설명
id int PK, NOT NULL ID
member_id int FK, NOT NULL 회원 ID
login_date_time date NOT NULL 로그인 일자

3. Member_Ban 테이블

컬럼명 자료형 제약 조건 설명
id int PK, NOT NULL ID
member_id int FK, NOT NULL 회원 ID
reason string NOT NULL 정지 사유
start_date_time date NOT NULL 정지 시작일
end_date_time date NOT NULL 정지 종료일

4. Page_View_History 테이블

컬럼명 자료형 제약 조건 설명
id int PK, NOT NULL ID
category string NOT NULL 카테고리
count int NOT NULL 카운트
created_date_time date NOT NULL 생성일자

5. Board 테이블

컬럼명 자료형 제약 조건 설명
id int PK, NOT NULL ID
member_id int FK, NOT NULL 작성자 ID
nickname string NOT NULL 작성자 닉네임
category string NOT NULL 카테고리
title string NOT NULL 제목
content string NOT NULL 내용
is_view boolean NOT NULL 조회 가능 여부
created_date_time date NOT NULL 생성일자
modified_date_time date 수정일자

6. Comment 테이블

컬럼명 자료형 제약 조건 설명
id int PK, NOT NULL ID
board_id int FK, NOT NULL 게시판 ID
member_id int FK, NOT NULL 작성자 ID
nickname string NOT NULL 작성자 닉네임
content string NOT NULL 내용
is_view boolean NOT NULL 조회 가능 여부
created_date_time date NOT NULL 생성일자
modified_date_time date 수정일자

7. Board_File 테이블

컬럼명 자료형 제약 조건 설명
id int PK, NOT NULL ID
board_id int FK, NOT NULL 게시판 ID
original_name string NOT NULL 파일 원본 이름
uuid string NOT NULL UUID
save_path string NOT NULL 저장 경로
extension string NOT NULL 파일 확장자
created_date_time date NOT NULL 생성일자
modified_date_time date 수정일자

8. Mail_Form 테이블

컬럼명 자료형 제약 조건 설명
id int PK, NOT NULL ID
title string NOT NULL 폼 제목
content string NOT NULL 폼 내용
code string NOT NULL 코드
created_date_time date NOT NULL 생성일자

9. Mail_Send_History 테이블

컬럼명 자료형 제약 조건 설명
id int PK, NOT NULL ID
title string NOT NULL 메일 제목
content string NOT NULL 메일 내용
code string NOT NULL 코드
is_success boolean NOT NULL 발송 성공 여부
send_date_time date NOT NULL 발송일자