Files
pinchflat/priv/repo/migrations/20240411154245_add_output_template_to_sources.exs
T
Kieran 2c717e8e7e [Enhancement] Allow overriding output templates on a per-source basis (#179)
* Added output path override to table and download option builder

* Added output template override to UI
2024-04-11 10:46:19 -07:00

10 lines
201 B
Elixir

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