diff --git a/src/main/resources/sql/data.sql b/src/main/resources/sql/data.sql index 27c8da51..4fa9b6a6 100644 --- a/src/main/resources/sql/data.sql +++ b/src/main/resources/sql/data.sql @@ -10,5 +10,12 @@ INSERT IGNORE INTO LANGUAGE (LOCALE, MESSAGE_KEY, MESSAGE_CONTENT) VALUES ('en', 'email_duplication','This email already exists : {0}'), ('ko', 'email_duplication','이미 존재하는 이메일입니다 : {0}'), ('en', 'invalid_password','The password you requested is invalid : {0}'), - ('ko', 'invalid_password','유효하지 않은 비밀번호 입니다 : {0}') + ('ko', 'invalid_password','유효하지 않은 비밀번호 입니다 : {0}'), + + ('en', 'expired_token','The token has expired'), + ('ko', 'expired_token','만료된 토큰입니다'), + ('en', 'authenticated_token','The token already confirmed'), + ('ko', 'authenticated_token','이미 인증된 토큰입니다'), + ('en', 'ungenerated_token','The token is not a normal generated by the server'), + ('ko', 'ungenerated_token','서버에 의해 생성된 정상 토큰이 아닙니다') ;