Skip to content

Commit

Permalink
fix: update old default cron to be valid
Browse files Browse the repository at this point in the history
  • Loading branch information
Crypta-Eve committed Jan 22, 2024
1 parent 630ebaa commit 1f5bc72
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Controllers/Configuration/ScheduleController.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function listSchedule()
'every minute' => '* * * * *',
'every five minutes' => '*/5 * * * *',
'every ten minutes' => '*/10 * * * *',
'every thirty minutes' => '0/30 * * * *',
'every thirty minutes' => '*/30 * * * *',

];

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?php

/*
* This file is part of SeAT
*
* Copyright (C) 2015 to present Leon Jacobs
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;

/**
* Class FixIssueEveseatWeb793.
*/
class FixInvalidSchedules extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
DB::table('schedules')
->where('expression', '0/30 * * * *')
->update([
'expression' => '*/30 * * * *',
]);
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
}
}

0 comments on commit 1f5bc72

Please sign in to comment.