pinchflat/priv/repo/migrations/20240318161405_add_nfo_path_to_sources.exs

11 lines
277 B
Elixir

defmodule Pinchflat.Repo.Migrations.AddNfoPathToSources do
use Ecto.Migration
def change do
alter table(:sources) do
add :download_nfo, :boolean, default: false, null: false
add :nfo_filepath, :string
add :series_directory, :string
end
end
end