pinchflat/priv/repo/migrations/20240125165519_add_index_frequency_to_channels.exs
2024-02-16 09:28:42 -08:00

9 lines
227 B
Elixir

defmodule Pinchflat.Repo.Migrations.AddIndexFrequencyToSources do
use Ecto.Migration
def change do
alter table(:sources) do
add :index_frequency_minutes, :integer, default: 60 * 24, null: false
end
end
end