Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
이번 PR에서는 Stempo 애플리케이션의 1차 MVP 개발을 위한 데이터베이스 스키마 설정을 포함하고 있습니다.
이 스키마는 기록, 업적, 영상 정보, 아티클 정보, 게시판, 파일 관리, 사용자 정보 등의 기능을 지원합니다.
Tasks
기록 테이블 생성
id
,user_id
,accuracy
,duration
,steps
,created_at
,updated_at
,deleted
업적 테이블 생성
id
,name
,description
,image_url
,created_at
,updated_at
,deleted
영상 정보 테이블 생성
id
,title
,content
,thumbnail_url
,video_url
,created_at
,updated_at
,deleted
아티클 정보 테이블 생성
id
,title
,content
,thumbnail_url
,article_url
,created_at
,updated_at
,deleted
게시판 테이블 생성
id
,user_id
,category
,title
,content
,created_at
,updated_at
,deleted
파일 관리 테이블 생성
id
,file_name
,file_url
,created_at
,updated_at
,deleted
사용자 테이블 생성
id
,password
,created_at
,updated_at
,deleted
Screenshot