add migration

This commit is contained in:
phyzical 2025-08-10 00:35:35 +08:00
parent 95fc600076
commit f5fe554345
No known key found for this signature in database
GPG key ID: 91E97494BCA22BCF

View file

@ -0,0 +1,9 @@
defmodule Pinchflat.Repo.Migrations.AddMembersContentBehaviourToSource do
use Ecto.Migration
def change do
alter table(:sources) do
add :members_content_behaviour, :string, null: false, default: "include"
end
end
end