This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/Zotlabs/Update/_1222.php
2018-10-06 17:43:37 +02:00

24 lines
276 B
PHP

<?php
namespace Zotlabs\Update;
class _1222 {
function run() {
q("START TRANSACTION");
$r1 = q("DELETE FROM app WHERE app_name = 'Grid' and app_system = 1");
if($r1) {
q("COMMIT");
return UPDATE_SUCCESS;
}
q("ROLLBACK");
return UPDATE_FAILED;
}
}