mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
7 lines
240 B
MySQL
7 lines
240 B
MySQL
|
ALTER TABLE {$NAMESPACE}_conpherence.conpherence_thread
|
||
|
DROP imagePHID,
|
||
|
ADD imagePHIDs LONGTEXT COLLATE utf8_bin NOT NULL AFTER title;
|
||
|
|
||
|
UPDATE {$NAMESPACE}_conpherence.conpherence_thread
|
||
|
SET imagePHIDs = '{}' WHERE imagePHIDs = '';
|