live_beats/priv/repo/migrations/20220127172551_add_file_size_to_songs.exs
2022-01-27 14:41:37 -05:00

10 lines
200 B
Elixir

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