diff --git a/SicRT/Config/DBModel.sql b/SicRT/Config/DBModel.sql index da388111..c7cf5ee4 100644 --- a/SicRT/Config/DBModel.sql +++ b/SicRT/Config/DBModel.sql @@ -847,6 +847,33 @@ if not exists(select * from information_schema.tables GRANT SELECT ON TABLE runtime_data TO postgres; end if; ------------------------------------------------------------------------------------------------ + -- + if not exists(select * from information_schema.tables + where + table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA + and table_name = 'recipe_history_data') then + + CREATE TABLE recipe_history_data + ( + "str_guid" text, + "role_name" text, + "recipe_name" text, + "hash_code" text, + "create_time" timestamp, + "recipe_gzip" text, + "process_type" text, + "spare1" text, + "spare2" text, + CONSTRAINT recipe_history_data_pkey PRIMARY KEY ("str_guid" ) + ) + WITH ( + OIDS=FALSE + ); + ALTER TABLE recipe_history_data + OWNER TO postgres; + GRANT SELECT ON TABLE recipe_history_data TO postgres; + end if; +------------------------------------------------------------------------------------------------ end; diff --git a/ThirdParty/MECF.Framework/MECF.Framework.Common.dll b/ThirdParty/MECF.Framework/MECF.Framework.Common.dll index 13c667c4..01acb0e2 100644 Binary files a/ThirdParty/MECF.Framework/MECF.Framework.Common.dll and b/ThirdParty/MECF.Framework/MECF.Framework.Common.dll differ diff --git a/ThirdParty/MECF.Framework/MECF.Framework.RT.Core.dll b/ThirdParty/MECF.Framework/MECF.Framework.RT.Core.dll index 6088fc5b..10d6a04e 100644 Binary files a/ThirdParty/MECF.Framework/MECF.Framework.RT.Core.dll and b/ThirdParty/MECF.Framework/MECF.Framework.RT.Core.dll differ diff --git a/ThirdParty/MECF.Framework/MECF.Framework.RT.EquipmentLibrary.dll b/ThirdParty/MECF.Framework/MECF.Framework.RT.EquipmentLibrary.dll index 42223541..f5a0cbbf 100644 Binary files a/ThirdParty/MECF.Framework/MECF.Framework.RT.EquipmentLibrary.dll and b/ThirdParty/MECF.Framework/MECF.Framework.RT.EquipmentLibrary.dll differ diff --git a/ThirdParty/MECF.Framework/MECF.Framework.Simulator.Core.dll b/ThirdParty/MECF.Framework/MECF.Framework.Simulator.Core.dll index a5d708c8..22357b89 100644 Binary files a/ThirdParty/MECF.Framework/MECF.Framework.Simulator.Core.dll and b/ThirdParty/MECF.Framework/MECF.Framework.Simulator.Core.dll differ diff --git a/ThirdParty/MECF.Framework/MECF.Framework.UI.Client.dll b/ThirdParty/MECF.Framework/MECF.Framework.UI.Client.dll index 810a8f09..8f40d07d 100644 Binary files a/ThirdParty/MECF.Framework/MECF.Framework.UI.Client.dll and b/ThirdParty/MECF.Framework/MECF.Framework.UI.Client.dll differ diff --git a/ThirdParty/MECF.Framework/MECF.Framework.UI.Core.dll b/ThirdParty/MECF.Framework/MECF.Framework.UI.Core.dll index 4146cf2b..10d503fd 100644 Binary files a/ThirdParty/MECF.Framework/MECF.Framework.UI.Core.dll and b/ThirdParty/MECF.Framework/MECF.Framework.UI.Core.dll differ