berrypod/priv/repo/migrations/20260207084327_add_encrypted_value_to_settings.exs
jamey 9528700862 rename project from SimpleshopTheme to Berrypod
All modules, configs, paths, and references updated.
836 tests pass, zero warnings.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 21:23:15 +00:00

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