chiya/priv/repo/migrations/20230729160000_add_bookmark_channel_setting.exs
2023-08-02 20:48:45 +02:00

9 lines
222 B
Elixir

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