mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
7 lines
329 B
MySQL
7 lines
329 B
MySQL
|
ALTER TABLE {$NAMESPACE}_conpherence.conpherence_thread
|
||
|
ADD recentParticipantPHIDs LONGTEXT NOT NULL COLLATE utf8_bin AFTER title,
|
||
|
ADD messageCount BIGINT UNSIGNED NOT NULL AFTER title;
|
||
|
|
||
|
ALTER TABLE {$NAMESPACE}_conpherence.conpherence_participant
|
||
|
ADD seenMessageCount BIGINT UNSIGNED NOT NULL AFTER behindTransactionPHID;
|