devel #239

Merged
inhji merged 9 commits from devel into main 2023-07-29 16:44:26 +02:00
Showing only changes of commit 10c53690bd - Show all commits

View file

@ -0,0 +1,9 @@
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