chiya/priv/repo/migrations/20230611183608_add_default_micropub_channel_setting.exs

9 lines
229 B
Elixir

defmodule Chiya.Repo.Migrations.AddDefaultMicropubChannelSetting do
use Ecto.Migration
def change do
alter table(:settings) do
add :micropub_channel_id, references(:channels, on_delete: :nothing)
end
end
end