Dakota Update 1.1 Scripte zusammengefasst

This commit is contained in:
2024-12-03 09:44:40 +01:00
parent 64860f4a9d
commit 178e0679a7
8 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
ALTER TABLE `gkvtransferprotokoll`
CHANGE COLUMN `Nutzdatendatei` `Nutzdatendatei` MEDIUMTEXT NULL DEFAULT NULL ;
ALTER TABLE `organisation`
ADD COLUMN `GkvAusblenden` TINYINT NULL DEFAULT NULL AFTER `BusinessPartnerId`;
UPDATE `organisation` SET `Verfahrensstufe`='1' WHERE `Verfahrensstufe`='0';
ALTER TABLE `mandator`
ADD COLUMN `BankAccountOid` BIGINT NULL DEFAULT NULL AFTER `IKLeistungserbringer`;
ALTER TABLE `mandator`
ADD COLUMN `SoziotherapieAnsprechpartnerOid` BIGINT NULL DEFAULT NULL AFTER `BankAccountOid`;
ALTER TABLE `mandator`
ADD COLUMN `Website` VARCHAR(2048) NULL DEFAULT NULL AFTER `Name`;
ALTER TABLE `mandator`
ADD COLUMN `ImageOid` BIGINT NULL DEFAULT NULL AFTER `SoziotherapieAnsprechpartnerOid`;