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

10 lines
229 B
Elixir
Raw Normal View History

2023-06-11 20:39:14 +02:00
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