priv/repo/migrations/20230729160000_add_bookmark_channel_setting.exs hinzugefügt

This commit is contained in:
inhji 2023-07-29 16:04:29 +02:00
parent 0674fd4deb
commit 10c53690bd

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