chore: adds migration for member field visibility

This commit is contained in:
carla 2025-12-02 08:45:18 +01:00
parent e803dbdf8b
commit cf957563bb
3 changed files with 244 additions and 0 deletions

View file

@ -0,0 +1,21 @@
defmodule Mv.Repo.Migrations.AddMemberFieldVisibilityToSettings do
@moduledoc """
Updates resources based on their most recent snapshots.
This file was autogenerated with `mix ash_postgres.generate_migrations`
"""
use Ecto.Migration
def up do
alter table(:settings) do
add :member_field_visibility, :map
end
end
def down do
alter table(:settings) do
remove :member_field_visibility
end
end
end