streams/Zotlabs/Update/_1254.php

24 lines
345 B
PHP
Raw Normal View History

<?php
namespace Zotlabs\Update;
use Zotlabs\Lib\Config;
2021-12-02 23:02:31 +00:00
class _1254
{
2021-12-02 23:02:31 +00:00
public function run()
{
q("UPDATE channel SET channel_notifyflags = channel_notifyflags + %d WHERE true",
intval(NOTIFY_RESHARE)
);
return UPDATE_SUCCESS;
}
2021-12-02 23:02:31 +00:00
public function verify()
{
return true;
}
}