10 lines
214 B
Elixir
10 lines
214 B
Elixir
defmodule Pinchflat.Repo.Migrations.AddNfoPathToSources do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:sources) do
|
|
add :nfo_filepath, :string
|
|
add :series_directory, :string
|
|
end
|
|
end
|
|
end
|