1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-10-23 09:08:52 +02:00
phorge-phorge/resources/sql/autopatches/20220519.file.02.migrate.sql

8 lines
281 B
MySQL
Raw Normal View History

INSERT IGNORE INTO {$NAMESPACE}_file.file_attachment
(objectPHID, filePHID, attachmentMode, attacherPHID,
dateCreated, dateModified)
SELECT dst, src, 'attach', null, dateCreated, dateCreated
FROM {$NAMESPACE}_file.edge
WHERE type = 26
ORDER BY dateCreated ASC;