streams/Code/Update/_1250.php

22 lines
438 B
PHP
Raw Normal View History

<?php
2022-02-16 04:08:28 +00:00
namespace Code\Update;
2021-12-02 23:02:31 +00:00
class _1250
{
2021-12-02 23:02:31 +00:00
public function run()
{
// remove deprecated apps from system list
$access = '067b70e92e35cc1b729c8c386bf8289cbec2618911a87c460a9b4705f2c151f8535402d468d469eeb630fad2c9cdd9aced80fb2b7cb29e47ae8f9c22c83ee7f2';
2021-12-02 23:02:31 +00:00
q("delete from app where app_id = '$access' ");
return UPDATE_SUCCESS;
}
2021-12-02 23:02:31 +00:00
public function verify()
{
return true;
}
}