Show wishlisted date for wishlisted records

This commit is contained in:
Claudio Ortolina
2025-06-14 12:58:47 +03:00
parent da5a3bad53
commit 2df5e7ee1d
5 changed files with 30 additions and 1 deletions
+3 -1
View File
@@ -22,7 +22,9 @@ defmodule MusicLibrary.Records do
:release_ids,
:included_release_group_ids,
:cover_hash,
:release_date
:release_date,
:inserted_at,
:updated_at
]
end
@@ -28,5 +28,7 @@ defmodule MusicLibrary.Records.SearchIndex do
field :included_release_group_ids, {:array, :string}, default: []
embeds_many :artists, Artist
timestamps(type: :utc_datetime)
end
end