1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-09 20:52:56 +01:00

Fixes for json columsn

This commit is contained in:
David Bomba 2022-06-19 20:33:43 +10:00
parent 6261d9d181
commit 508a42e6c5

View File

@ -24,7 +24,7 @@ class AddJobRelatedFieldsToSchedulersTable extends Migration
Schema::table('schedulers', function (Blueprint $table) {
$table->string('action_name')->index();
$table->string('action_class');
$table->json('parameters')->nullable();
$table->mediumText('parameters')->nullable();
});
}