feat: added description field to playlists (#680)

This commit is contained in:
Kyrch
2024-05-24 17:44:38 -03:00
committed by GitHub
parent 97b49dbb5e
commit 7f00114415
14 changed files with 177 additions and 5 deletions
@@ -33,6 +33,13 @@ final class CreatePlaylistIndex implements MigrationInterface
],
],
]);
$mapping->text('description', [
'fields' => [
'keyword' => [
'type' => 'keyword',
],
],
]);
$mapping->date('updated_at');
});
}