8a0ae89bc0
* [WIP] add settings sidebar entry and placeholder page * [WIP] added placeholder UI and logic for settings form * Added column and UI for apprise server * Add some tests * Added placeholder command runner for apprise * [WIP] Adding apprise package * Added apprise command runner * Hooked up apprise notification module * Ensured apprise was running in verbose mode * Updated wording of apprise notification * Added apprise to README
10 lines
188 B
Elixir
10 lines
188 B
Elixir
defmodule Pinchflat.Repo.Migrations.AddAppriseServersToSettings do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:settings) do
|
|
add :apprise_server, :string
|
|
end
|
|
end
|
|
end
|