10 lines
269 B
SQL
10 lines
269 B
SQL
UPDATE osint.exhibits AS exhibit
|
|
SET width = 220,
|
|
height = 272,
|
|
updated_at = NOW()
|
|
FROM osint.document_exhibits AS document
|
|
WHERE document.exhibit_id = exhibit.id
|
|
AND document.capture_kind_id = 'clipping'
|
|
AND exhibit.width = 210
|
|
AND exhibit.height = 194;
|