mirror of
https://github.com/ClaperCo/Claper.git
synced 2025-12-15 19:37:53 +01:00
10 lines
188 B
Elixir
10 lines
188 B
Elixir
defmodule Claper.Repo.Migrations.AddProviderToEmbeds do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:embeds) do
|
|
add :provider, :string, default: "custom"
|
|
end
|
|
end
|
|
end
|