Store image hashes in the db - part 1

This commit is contained in:
Claudio Ortolina
2024-09-30 20:09:32 +01:00
parent 9cd24bad17
commit 180224d381
5 changed files with 60 additions and 3 deletions
@@ -0,0 +1,9 @@
defmodule MusicLibrary.Repo.Migrations.AddImageDataHashToRecords do
use Ecto.Migration
def change do
alter table(:records) do
add :image_data_hash, :string
end
end
end