관리자 미디어 라이브러리·썸네일 탭 분리 및 논리 폴더 정책(v0.0.90)

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-12 10:40:27 +09:00
parent 05176609ee
commit e8d92bb13e
10 changed files with 487 additions and 94 deletions

View File

@@ -0,0 +1,12 @@
-- 게시물 업로드 경로 기본 분류(posts) 및 구 프로필 경로(회원/썸네일)를 논리 폴더 정책에 맞게 정리한다.
UPDATE media_metadata
SET
category = '미분류',
updated_at = now()
WHERE category = 'posts';
UPDATE media_metadata
SET
category = '썸네일',
updated_at = now()
WHERE category = '회원/썸네일';