Display dominant colors from the db

This commit is contained in:
Claudio Ortolina
2025-06-07 20:07:23 +01:00
parent 8a2fda5f73
commit c5e47cbc8c
7 changed files with 65 additions and 4 deletions
@@ -0,0 +1,9 @@
defmodule MusicLibrary.Repo.Migrations.AddDominantColorsToRecords do
use Ecto.Migration
def change do
alter table(:records) do
add :dominant_colors, {:array, :string}, default: []
end
end
end