Files
pinchflat/priv/repo/migrations/20240125165519_add_index_frequency_to_channels.exs
T
Kieran b81c8d64b3 Switch to sqlite (#22)
* Updated project to use sqlite

* Edited migrations directly because I fear no man

* Updated search functions and tests to work with sqlite

* Updated build tools to remove postgres
2024-02-16 17:11:41 -08:00

10 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