When I upgrade my app to 7.2 at some stage the modeller needs to upgrade the database:
CREATE TABLE "mendixsystem$unique_constraint" (
"name" varchar(255) NOT NULL,
"table_id" varchar(36) NOT NULL,
"column_id" varchar(36) NOT NULL,
PRIMARY KEY("name","column_id"));
UPDATE "mendixsystem$version"
SET "preanalysismigrationversionnumber" = '3.0.0';
After the start of the app I get the follwoing error when I use postgress Database, With build in database it runs without a problem.
Mendix.Modeler.M2EEConnector.M2EEException: The server encountered an error.
at Mendix.Modeler.M2EEConnector.M2EEResponse.CheckSuccess() in C:\jenkins\workspace\Modeler-Build\modeler\Mendix.Modeler.M2EEConnector\M2EEResponse.cs:line 57
at Mendix.Modeler.M2EEConnector.StartupManager.StartRuntime(IM2EEClient client, StartupInfo info) in C:\jenkins\workspace\Modeler-Build\modeler\Mendix.Modeler.M2EEConnector\StartupManager.cs:line 105
at Mendix.Modeler.M2EEConnector.StartupManager.PerformStartup(StartupInfo info, IM2EEClient client) in C:\jenkins\workspace\Modeler-Build\modeler\Mendix.Modeler.M2EEConnector\StartupManager.cs:line 48
at Mendix.Modeler.M2EEConnector.RuntimeController.Start(StartupInfo info, LogLevel autoSubscribeLogLevel) in C:\jenkins\workspace\Modeler-Build\modeler\Mendix.Modeler.M2EEConnector\RuntimeController.cs:line 133
at Mendix.Modeler.Utility.BackgroundUtil.<>c__DisplayClass1_0`1.<Do>b__0(Object s, DoWorkEventArgs e) in C:\jenkins\workspace\Modeler-Build\modeler\Mendix.Modeler.Utility\BackgroundUtil.cs:line 28
at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e)
at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
It seems there is some issue with postgress?