From 0d34aa7f99fa2c3f1d52dd83bd5e0124da44e4dd Mon Sep 17 00:00:00 2001 From: Dohyun Lim Date: Wed, 4 Feb 2026 16:58:50 +0900 Subject: [PATCH] remove duplicate index at token table --- app/user/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/user/models.py b/app/user/models.py index 2e00f14..2c734dc 100644 --- a/app/user/models.py +++ b/app/user/models.py @@ -344,7 +344,6 @@ class RefreshToken(Base): token_hash: Mapped[str] = mapped_column( String(64), nullable=False, - unique=True, comment="리프레시 토큰 SHA-256 해시값", )