live_beats/priv/repo/migrations/20230308164408_add_text_segments_to_songs.exs
Chris McCord a1c6c454f0 WIP
2023-03-09 09:29:22 -05:00

10 lines
206 B
Elixir

defmodule LiveBeats.Repo.Migrations.AddLyricsToSongs do
use Ecto.Migration
def change do
alter table(:songs) do
add :text_segments, {:array, :map}, null: false, default: []
end
end
end