feat: property value as Union type
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Moritz 2025-05-22 01:58:39 +02:00
parent c91f65d04c
commit d085d80f74
Signed by: moritz
GPG key ID: 1020A035E5DD0824
6 changed files with 40 additions and 7 deletions

View file

@ -21,7 +21,7 @@ defmodule Mv.Repo.Migrations.InitialMigration do
create table(:properties, primary_key: false) do
add :id, :uuid, null: false, default: fragment("gen_random_uuid()"), primary_key: true
add :value, :text
add :value, :map
add :member_id, :uuid
add :property_type_id, :uuid
end