* 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
9 lines
207 B
Elixir
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
|