-
Notifications
You must be signed in to change notification settings - Fork 1
[Back] 서비스 회원가입, 로그인 기능 개발 - feature/account-login #5
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
Labels
Backend
Backend task(ex. 서버 개발)
Comments
DB 리서치MySQL특징
장점
단점
PostgreSQL특징
참고 : ACID?
장점
단점
비교
|
Session Cookie vs JWT 토큰 리서치세션 쿠키(Session Cookie):동작 방식
장점
단점:
JWT (Json Web Token):동작 방식
장점
단점
요약
|
DB 인프라 구축스키마 설정
user_account-- art 데이터베이스 생성
CREATE DATABASE art;
-- art 데이터베이스로 연결
\c art;
-- user_account 테이블 생성
CREATE TABLE user_account (
seq BIGSERIAL PRIMARY KEY,
id VARCHAR(500) NOT NULL,
password BYTEA NOT NULL,
name VARCHAR(500) NOT NULL,
gender VARCHAR(20) NOT NULL,
age VARCHAR(200) NOT NULL,
status BOOLEAN NOT NULL DEFAULT TRUE
);
-- user_account 테이블 삭제
DROP TABLE user_account;
-- user_content 테이블 생성
CREATE TABLE user_content (
seq BIGSERIAL PRIMARY KEY,
id VARCHAR(500) NOT NULL,
generated_id VARCHAR(500) NOT NULL
);
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
📌 Description
서비스 사용을 위한 회원가입, 로그인 기능을 개발합니다.
🎈 Goal
✏️ Todo
추가 개발 사항(Demo 이후)
The text was updated successfully, but these errors were encountered: