All modules, configs, paths, and references updated. 836 tests pass, zero warnings. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
188 B
Elixir
10 lines
188 B
Elixir
defmodule Berrypod.Repo.Migrations.AddEncryptedValueToSettings do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:settings) do
|
|
add :encrypted_value, :binary
|
|
end
|
|
end
|
|
end
|