mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
12 lines
373 B
MySQL
12 lines
373 B
MySQL
|
UPDATE {$NAMESPACE}_phriction.phriction_document
|
||
|
SET status = 'active' WHERE status = '0';
|
||
|
|
||
|
UPDATE {$NAMESPACE}_phriction.phriction_document
|
||
|
SET status = 'deleted' WHERE status = '1';
|
||
|
|
||
|
UPDATE {$NAMESPACE}_phriction.phriction_document
|
||
|
SET status = 'moved' WHERE status = '2';
|
||
|
|
||
|
UPDATE {$NAMESPACE}_phriction.phriction_document
|
||
|
SET status = 'stub' WHERE status = '3';
|