We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
CREATE TABLE IF NOT EXISTS devices ( uuid BINARY(16) NOT NULL, member_id BIGINT NOT NULL COMMENT '회원 PK', device_type VARCHAR(255) COMMENT '기기 유형', last_accessed_at DATETIME(6) NOT NULL COMMENT '최근 접속 일시', created_at DATETIME(6) NOT NULL COMMENT '생성 일시', updated_at DATETIME(6) NOT NULL COMMENT '수정 일시', PRIMARY KEY (uuid), CONSTRAINT fk_devices_member_id FOREIGN KEY (member_id) REFERENCES members(id) ) COMMENT '기기';
HTTP request header > user-agent > comment > system-information
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/User-Agent
The text was updated successfully, but these errors were encountered:
feat #73 : implement HttpRequestHeaderParser
098b5c8
feat #73 : add DeviceEntity, Repository and update titi.sql
adc0d73
feat #73 : add deviceId issuance and update lastAccessedAt logic to L…
697ea85
…ogin API
chore #73 : change property name
0e5f2c1
seonpilKim
Successfully merging a pull request may close this issue.
🍑 배경
HTTP request header > user-agent > comment > system-information
로부터 추출해요. comment는 optional이라, 컬럼도 nullable로 설정해요.The text was updated successfully, but these errors were encountered: