feat: song native title (#979)

This commit is contained in:
Kyrch
2025-10-24 03:31:00 -03:00
committed by GitHub
parent 6721443646
commit 4a7b960d34
12 changed files with 154 additions and 4 deletions
@@ -23,6 +23,13 @@ final class CreateSongIndex implements MigrationInterface
],
],
]);
$mapping->text('title_native', [
'fields' => [
'keyword' => [
'type' => 'keyword',
],
],
]);
$mapping->date('updated_at');
});
}