1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00

Fixes for migrations with incompatible types

This commit is contained in:
David Bomba 2022-06-19 18:07:51 +10:00
parent 6ad8e66ecb
commit 78780001cf

View File

@ -26,7 +26,7 @@ class CreateScheduledJobsTable extends Migration
$table->id();
$table->string('action_name');
$table->string('action_class');
$table->json('parameters')->nullable();
$table->mediumText('parameters')->nullable();
$table->foreignIdFor(\App\Models\Company::class);
$table->foreignIdFor(\App\Models\Scheduler::class);
$table->timestamps();