Support lists exclusive param

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk 2026-02-18 11:06:13 +01:00 committed by nicole mikołajczyk
commit 490cd33bc9
11 changed files with 133 additions and 48 deletions

View file

@ -0,0 +1,9 @@
defmodule Pleroma.Repo.Migrations.AddExclusiveToLists do
use Ecto.Migration
def change do
alter table(:lists) do
add(:exclusive, :boolean, default: false)
end
end
end