pinchflat/priv/repo/migrations/20240309182418_add_fast_index_to_sources.exs
2024-03-09 13:30:01 -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