pinchflat/priv/repo/migrations/20240320153902_add_title_regex_to_source.exs
2024-03-20 08:43:54 -07:00

9 lines
185 B
Elixir

defmodule Pinchflat.Repo.Migrations.AddTitleRegexToSource do
use Ecto.Migration
def change do
alter table(:sources) do
add :title_filter_regex, :string
end
end
end