F
Filament9mo ago
Omar

Error when run migration / plugins Translation manager

I have tried to implement this "Translation Manager" library but I get the following error when following the steps, mostly during the migration
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();
});
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();
});
No description
1 Reply
cheesegrits
cheesegrits9mo ago
What "Translation Manager" library?