diff options
author | Mario <mario@mariovavti.com> | 2021-06-27 13:45:06 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-06-27 13:45:06 +0000 |
commit | b3b842c0713aef18274fd7ecb95551a4d22d1763 (patch) | |
tree | b29a3b63b7bd5fe9a340a56176d9be78debef24a /Zotlabs/Update/_1246.php | |
parent | aca8d1b8f995cf2a4cbbdbb88f7eaebf08967e30 (diff) | |
download | volse-hubzilla-b3b842c0713aef18274fd7ecb95551a4d22d1763.tar.gz volse-hubzilla-b3b842c0713aef18274fd7ecb95551a4d22d1763.tar.bz2 volse-hubzilla-b3b842c0713aef18274fd7ecb95551a4d22d1763.zip |
update 1246 to flag legacy zot hublocs and xchans deleted. we will set the deleted flag to 2 so we can distinguish them from real deletes if necessary
Diffstat (limited to 'Zotlabs/Update/_1246.php')
-rw-r--r-- | Zotlabs/Update/_1246.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Zotlabs/Update/_1246.php b/Zotlabs/Update/_1246.php new file mode 100644 index 000000000..3023c45dd --- /dev/null +++ b/Zotlabs/Update/_1246.php @@ -0,0 +1,24 @@ +<?php + +namespace Zotlabs\Update; + +class _1246 { + + function run() { + + q("START TRANSACTION"); + + $r1 = dbq("UPDATE xchan SET xchan_deleted = 2 WHERE xchan_network = 'zot' AND xchan_deleted = 0"); + $r2 = dbq("UPDATE hubloc SET hubloc_deleted = 2 WHERE hubloc_network = 'zot' AND hubloc_deleted = 0"); + + if($r1 && $r2) { + q("COMMIT"); + return UPDATE_SUCCESS; + } + + q("ROLLBACK"); + return UPDATE_FAILED; + + } + +} |