pinchflat/priv/repo/migrations/20240309182418_add_fast_index_to_sources.exs
Kieran 816def21bb
Fast index UI (#63)
* Added fast_index field and adds it to source form

* Added fast indexing to source changeset operations

* Added fast indexing worker and updated other modules to start using it

* Handled fast index worker on source update
2024-03-09 20:09:11 -08:00

9 lines
207 B
Elixir

defmodule Pinchflat.Repo.Migrations.AddFastIndexToSources do
use Ecto.Migration
def change do
alter table(:sources) do
add :fast_index, :boolean, null: false, default: false
end
end
end