Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

redis 의존성 제거하기 #108

Merged
merged 5 commits into from
Jul 29, 2024
Merged

redis 의존성 제거하기 #108

merged 5 commits into from
Jul 29, 2024

Conversation

KarmaPol
Copy link
Member

구현 기능

  • redis 의존성 제거하기
  • rdb refresh token 추가

resolve: #107

@KarmaPol KarmaPol added the ⚒️ Fix 기능 수정 label Jul 26, 2024
@KarmaPol KarmaPol requested a review from annahxxl July 26, 2024 12:14
@KarmaPol KarmaPol self-assigned this Jul 26, 2024
@annahxxl annahxxl merged commit 69d3847 into dev Jul 29, 2024
1 check passed
@annahxxl
Copy link
Contributor

annahxxl commented Jul 29, 2024

리프래시 토큰 관련 테이블은 작성해 주신 엔티티 기반으로 아래와 같이 임시로 수동 추가해 두었습니다! 확인해 주시고 수정 필요시 반영 부탁드려요! 고생하셨습니다.

CREATE TABLE IF NOT EXISTS refresh_token
(
    id         BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
    refresh_token      VARCHAR(255) NOT NULL,
    member_id  BIGINT UNSIGNED NOT NULL,
    created_at DATETIME     NOT NULL DEFAULT CURRENT_TIMESTAMP
);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
⚒️ Fix 기능 수정
Projects
None yet
Development

Successfully merging this pull request may close these issues.

redis 의존성 제거하기
2 participants