mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
12 lines
375 B
MySQL
12 lines
375 B
MySQL
|
ALTER TABLE phabricator_differential.differential_comment
|
||
|
ADD metadata LONGBLOB NOT NULL;
|
||
|
|
||
|
UPDATE phabricator_differential.differential_comment
|
||
|
SET metadata = '{}' WHERE metadata = '';
|
||
|
|
||
|
ALTER TABLE phabricator_maniphest.maniphest_transaction
|
||
|
ADD metadata LONGBLOB NOT NULL;
|
||
|
|
||
|
UPDATE phabricator_maniphest.maniphest_transaction
|
||
|
SET metadata = '{}' WHERE metadata = '';
|