mirror of
https://github.com/friendica/friendica
synced 2025-04-24 02:30:13 +00:00
Console script to ensure that all post updates are finished
This commit is contained in:
parent
6b14a2623a
commit
5037f9c460
3 changed files with 51 additions and 5 deletions
|
@ -24,20 +24,22 @@ class PostUpdate
|
|||
public static function update()
|
||||
{
|
||||
if (!self::update1194()) {
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
if (!self::update1198()) {
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
if (!self::update1206()) {
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
if (!self::update1279()) {
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
if (!self::update1281()) {
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue