defmodule Bright.Repo.Migrations.AddDuration do use Ecto.Migration def change do alter table(:vods) do add :duration, :integer end end end