I have tried to implement this "Translation Manager" library but I get the following error when following the steps, mostly during the migration ```php Schema::create('language_lines', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('group')->index(); $table->string('key')->index(); $table->json('text')->default(new \Illuminate\Database\Query\Expression('(JSON_ARRAY())')); $table->timestamps(); }); ```