mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-07 18:27:16 -04:00
Fixes for json columsn
This commit is contained in:
parent
6261d9d181
commit
508a42e6c5
@ -24,7 +24,7 @@ class AddJobRelatedFieldsToSchedulersTable extends Migration
|
|||||||
Schema::table('schedulers', function (Blueprint $table) {
|
Schema::table('schedulers', function (Blueprint $table) {
|
||||||
$table->string('action_name')->index();
|
$table->string('action_name')->index();
|
||||||
$table->string('action_class');
|
$table->string('action_class');
|
||||||
$table->json('parameters')->nullable();
|
$table->mediumText('parameters')->nullable();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user