fp/apps/bright/priv/repo/migrations/20250128043513_add_duration.exs

10 lines
160 B
Elixir
Raw Normal View History

2025-01-28 23:15:42 -08:00
defmodule Bright.Repo.Migrations.AddDuration do
use Ecto.Migration
def change do
alter table(:vods) do
add :duration, :integer
end
end
end