fp/services/bright/priv/repo/migrations/20250128043513_add_duration...

10 lines
160 B
Elixir
Raw Normal View History

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