mirror of
https://github.com/ClaperCo/Claper.git
synced 2025-12-16 03:47:56 +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
|