Add :collection to chat entity enum

This commit is contained in:
Claudio Ortolina
2026-04-13 10:04:37 +01:00
parent 399c4e4a2a
commit 55be2a4bab
2 changed files with 9 additions and 1 deletions
@@ -0,0 +1,8 @@
defmodule MusicLibrary.Repo.Migrations.AddCollectionEntityToChats do
use Ecto.Migration
# The entity column is a plain string in SQLite — no CHECK constraint to alter.
# This migration documents the addition of the :collection entity type.
def change do
end
end