From 6fabcca03f92ac3b1cedb29e925ea011fc1977d8 Mon Sep 17 00:00:00 2001 From: Klaus Date: Wed, 24 Jun 2026 16:31:06 +0900 Subject: [PATCH] =?UTF-8?q?docs(content-ranking):=20=EB=9E=AD=ED=82=B9=20?= =?UTF-8?q?=EC=8A=A4=EB=83=85=EC=83=B7=20DDL=EC=9D=84=20=EA=B0=B1=EC=8B=A0?= =?UTF-8?q?=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../create-content-ranking-tables.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/20260623_메인_콘텐츠_랭킹_탭_API/create-content-ranking-tables.sql b/docs/20260623_메인_콘텐츠_랭킹_탭_API/create-content-ranking-tables.sql index 6c965d7b..de5a62d3 100644 --- a/docs/20260623_메인_콘텐츠_랭킹_탭_API/create-content-ranking-tables.sql +++ b/docs/20260623_메인_콘텐츠_랭킹_탭_API/create-content-ranking-tables.sql @@ -18,7 +18,7 @@ create table content_ranking_snapshot ( creator_nickname varchar(100) not null comment '스냅샷 생성 시점 크리에이터 닉네임', cover_image_url varchar(500) null comment '스냅샷 생성 시점 콘텐츠 커버 이미지 URL', release_date timestamp not null comment '콘텐츠 공개 시각', - is_adult boolean not null comment '스냅샷 생성 시점 성인 콘텐츠 여부', + is_adult tinyint(1) not null default 0 comment '스냅샷 생성 시점 성인 콘텐츠 여부', rank_no int not null comment '스냅샷 생성 시점 순위', final_score double not null comment '최종 랭킹 점수 또는 정렬 지표', normalized_score double null comment '유료/무료 그룹 정규화 점수',