fae7ba3304
* Added duration field, started importing it during indexing and download * Added duration to RSS feed
10 lines
190 B
Elixir
10 lines
190 B
Elixir
defmodule Pinchflat.Repo.Migrations.AddDurationToMediaItems do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:media_items) do
|
|
add :duration_seconds, :integer
|
|
end
|
|
end
|
|
end
|