blob: c13b2a8146283e34db147929eb2780822b53801f (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
class FreshRSS_Migration_2019_12_23_Baz {
/**
* @return boolean true if the migration was successful, false otherwise
*/
public static function migrate() {
return true;
}
}
|