[회원 정보 업데이트] Member 엔티티에 name 및 email 필드 추가, 관련 DTO 및 서비스 로직 수정. 사용자 역할에서 USER 제거 및 검증 어노테이션 추가.

This commit is contained in:
2025-08-22 10:48:14 +09:00
parent 9e7929da6b
commit a4c14c69f0
6 changed files with 25 additions and 16 deletions

View File

@@ -7,10 +7,12 @@
oid bigint not null,
updated_at timestamp(6) not null,
updated_oid bigint,
role varchar(40) not null check (role in ('MEMBER','ADMIN','USER','SYSTEM_ADMIN')),
role varchar(40) not null check (role in ('MEMBER','ADMIN','SYSTEM_ADMIN')),
name varchar(100) not null,
password varchar(100) not null,
user_id varchar(100) not null,
refresh_token varchar(200),
email varchar(255) not null,
primary key (oid)
);