b81c8d64b3
* 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
10 lines
227 B
Elixir
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
|