Bemerkung bei Vga besser als MEDIUMTEXT setzen
This commit is contained in:
@@ -1334,7 +1334,7 @@ CREATE TABLE IF NOT EXISTS `CustomerVermittlungArbeit` (
|
|||||||
`AbgeleisteteStunden` decimal(18,10) DEFAULT NULL,
|
`AbgeleisteteStunden` decimal(18,10) DEFAULT NULL,
|
||||||
`ErsparteHafttage` decimal(18,10) DEFAULT NULL,
|
`ErsparteHafttage` decimal(18,10) DEFAULT NULL,
|
||||||
`GeleisteteRatenzahlung` decimal(18,10) DEFAULT NULL,
|
`GeleisteteRatenzahlung` decimal(18,10) DEFAULT NULL,
|
||||||
`Bemerkung` varchar(256),
|
`Bemerkung` MediumText,
|
||||||
`GeleisteteEinmalzahlung` decimal(18,10) DEFAULT NULL,
|
`GeleisteteEinmalzahlung` decimal(18,10) DEFAULT NULL,
|
||||||
`GrundArbeitsunfahig` tinyint,
|
`GrundArbeitsunfahig` tinyint,
|
||||||
`GrundSuchtproblem` tinyint,
|
`GrundSuchtproblem` tinyint,
|
||||||
@@ -2025,7 +2025,7 @@ CREATE TABLE `aiusersetting` (
|
|||||||
`AutoStartRecording` tinyint DEFAULT NULL,
|
`AutoStartRecording` tinyint DEFAULT NULL,
|
||||||
PRIMARY KEY (`Oid`),
|
PRIMARY KEY (`Oid`),
|
||||||
CONSTRAINT `FK_AIUSERSETTINGUSEROID_APPLICATIONUSER` FOREIGN KEY (`ApplicationUserOid`) REFERENCES `applicationuser` (`Oid`) ON DELETE CASCADE ON UPDATE CASCADE
|
CONSTRAINT `FK_AIUSERSETTINGUSEROID_APPLICATIONUSER` FOREIGN KEY (`ApplicationUserOid`) REFERENCES `applicationuser` (`Oid`) ON DELETE CASCADE ON UPDATE CASCADE
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||||
|
|
||||||
|
|
||||||
CREATE TABLE `aipromptbausteinroutinestep` (
|
CREATE TABLE `aipromptbausteinroutinestep` (
|
||||||
@@ -2142,4 +2142,11 @@ ADD CONSTRAINT `FK_AIPROMPTROUTINESTEP_ROUTINE`
|
|||||||
ON UPDATE CASCADE;
|
ON UPDATE CASCADE;
|
||||||
|
|
||||||
ALTER TABLE `aipromptbausteinroutine`
|
ALTER TABLE `aipromptbausteinroutine`
|
||||||
DROP COLUMN `IsFavorite`;
|
DROP COLUMN `IsFavorite`;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
ALTER TABLE `customervermittlungarbeit`
|
||||||
|
CHANGE COLUMN `Hinweis` `Hinweis` VARCHAR(1024) NULL DEFAULT NULL ,
|
||||||
|
CHANGE COLUMN `Bemerkung` `Bemerkung` MEDIUMTEXT NULL DEFAULT NULL ;
|
||||||
|
|||||||
Reference in New Issue
Block a user