From 8f080f407d01974cca30a089407f36388fd173c1 Mon Sep 17 00:00:00 2001 From: Michael Hoennig Date: Mon, 25 Mar 2024 17:13:49 +0100 Subject: [PATCH] remove calcualted personUuid from hs_office_person --- src/main/resources/db/changelog/210-hs-office-person.sql | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/resources/db/changelog/210-hs-office-person.sql b/src/main/resources/db/changelog/210-hs-office-person.sql index 30562033..dd91857f 100644 --- a/src/main/resources/db/changelog/210-hs-office-person.sql +++ b/src/main/resources/db/changelog/210-hs-office-person.sql @@ -17,13 +17,11 @@ CREATE CAST (character varying as HsOfficePersonType) WITH INOUT AS IMPLICIT; create table if not exists hs_office_person ( uuid uuid unique references RbacObject (uuid) initially deferred, - personUuid uuid GENERATED ALWAYS AS (uuid) stored, -- see usage in HsOfficePersonEntity personType HsOfficePersonType not null, tradeName varchar(96), givenName varchar(48), familyName varchar(48) ); ---// -- ============================================================================