feat: Add manual update check functionality to settings page

This commit is contained in:
Andras Bacsai
2024-08-07 11:42:55 +02:00
parent af41ed26ba
commit d3085e1ade
4 changed files with 48 additions and 31 deletions

View File

@@ -13,7 +13,7 @@ return new class extends Migration
{
Schema::table('instance_settings', function (Blueprint $table) {
$table->string('auto_update_frequency')->default('0 0 * * *')->nullable();
$table->string('update_check_frequency')->default('0 */11 * * *')->nullable();
$table->string('update_check_frequency')->default('0 * * * *')->nullable();
$table->boolean('new_version_available')->default(false);
});
}