Files
CRM/database/migrations/2018_08_09_18000_fix-empty-reminder-time.php
Kroonk a213a1dba0
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
refactor: replace custom CRM with Monica fork
2026-05-22 16:19:55 +02:00

19 lines
370 B
PHP

<?php
use App\Models\Account\Account;
use Illuminate\Database\Migrations\Migration;
class FixEmptyReminderTime extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Account::where('default_time_reminder_is_sent', '')
->update(['default_time_reminder_is_sent' => '12:00']);
}
}