mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 03:01:43 +09:00
- files 테이블에 cover_image 컬럼 추가 - 썸네일 생성 로직에 cover_image 값을 참조하여 이미지 선택 사용 - 파일 업로드 기능에 UI 추가
13 lines
554 B
XML
13 lines
554 B
XML
<query id="updateClearCoverImage" action="update">
|
|
<tables>
|
|
<table name="files" />
|
|
</tables>
|
|
<columns>
|
|
<column name="cover_image" default="N" notnull="notnull" />
|
|
</columns>
|
|
<conditions>
|
|
<condition operation="equal" column="upload_target_srl" var="upload_target_srl" notnull="notnull" />
|
|
<condition operation="equal" column="cover_image" default="Y" notnull="notnull" pipe="and" />
|
|
<condition operation="notequal" column="file_srl" var="cover_file_srl" pipe="and" />
|
|
</conditions>
|
|
</query>
|