Fix seekable songs

This commit is contained in:
Chris McCord 2022-01-27 14:41:37 -05:00
parent eecb14ecba
commit 5f6911ce98

View file

@ -0,0 +1,9 @@
defmodule LiveBeats.Repo.Migrations.AddFileSizeToSongs do
use Ecto.Migration
def change do
alter table(:songs) do
add :mp3_filesize, :integer, null: false, default: 0
end
end
end