feat(custom-field): add join_description attribute for GDPR join-form labels

This commit is contained in:
Simon 2026-06-03 12:01:41 +02:00
parent d51dcb1ac3
commit b6c2cf58b1
4 changed files with 242 additions and 3 deletions

View file

@ -0,0 +1,21 @@
defmodule Mv.Repo.Migrations.AddJoinDescriptionToCustomFields 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(:custom_fields) do
add :join_description, :text
end
end
def down do
alter table(:custom_fields) do
remove :join_description
end
end
end