fofo-project / fofo-backend

fofo 백엔드 프로젝트
0 stars 0 forks source link

매칭 임시 저장 API 개발 #122

Closed sungjun1116 closed 3 months ago

sungjun1116 commented 3 months ago

closes #118

sungjun1116 commented 3 months ago

Merge 하기전 DDL 작업 필수

ALTER TABLE member_match modify column man_agreement tinyint;
ALTER TABLE member_match modify column woman_agreement tinyint;

UPDATE member_match
SET man_agreement = NULL, woman_agreement = NULL
WHERE MATCHING_STATUS <> 30;