* Added a new column for restricting filenames * Adds restrict-filenames to command runner * Added UI to settings form
9 lines
212 B
Elixir
9 lines
212 B
Elixir
defmodule Pinchflat.Repo.Migrations.AddRestrictFilenamesToSettings do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:settings) do
|
|
add :restrict_filenames, :boolean, default: false
|
|
end
|
|
end
|
|
end
|