From b6acf603a57d2640e664cb6647e7f40527c0816b Mon Sep 17 00:00:00 2001 From: Tomasz Wolniewicz <twoln@umk.pl> Date: Thu, 18 Jan 2024 10:40:21 +0100 Subject: [PATCH] the new schema with additional edtity categories --- database/edugain_schema.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/database/edugain_schema.sql b/database/edugain_schema.sql index 9d88b3f..7205cc6 100644 --- a/database/edugain_schema.sql +++ b/database/edugain_schema.sql @@ -137,6 +137,21 @@ CREATE TABLE `entities_status` ( `sirtfi2_idp_cnt` smallint(6) DEFAULT NULL, `sirtfi2_sp_cnt` smallint(6) DEFAULT NULL, `sirtfi2_cnt` smallint(6) DEFAULT NULL + `coco2_idp_cnt` smallint(6) DEFAULT NULL, + `coco2_sp_cnt` smallint(6) DEFAULT NULL, + `coco2_cnt` smallint(6) DEFAULT NULL, + `esi_idp_cnt` smallint(6) DEFAULT NULL, + `esi_sp_cnt` smallint(6) DEFAULT NULL, + `esi_cnt` smallint(6) DEFAULT NULL, + `anon_idp_cnt` smallint(6) DEFAULT NULL, + `anon_sp_cnt` smallint(6) DEFAULT NULL, + `anon_cnt` smallint(6) DEFAULT NULL, + `pseudo_idp_cnt` smallint(6) DEFAULT NULL, + `pseudo_sp_cnt` smallint(6) DEFAULT NULL, + `pseudo_cnt` smallint(6) DEFAULT NULL, + `person_idp_cnt` smallint(6) DEFAULT NULL, + `person_sp_cnt` smallint(6) DEFAULT NULL, + `person_cnt` smallint(6) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- GitLab