streams/Code/Update/_1254.php

24 lines
351 B
PHP
Raw Normal View History

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