mirror of
https://github.com/fly-apps/live_beats.git
synced 2024-11-22 08:01:00 +00:00
Fix seekable songs
This commit is contained in:
parent
eecb14ecba
commit
5f6911ce98
1 changed files with 9 additions and 0 deletions
|
@ -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
|
Loading…
Reference in a new issue