10 lines
195 B
Elixir
10 lines
195 B
Elixir
|
|
defmodule SimpleshopTheme.Repo.Migrations.AddEncryptedValueToSettings do
|
||
|
|
use Ecto.Migration
|
||
|
|
|
||
|
|
def change do
|
||
|
|
alter table(:settings) do
|
||
|
|
add :encrypted_value, :binary
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|