Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

VersionDescriptionDDL versionVerify
v2.5.22Add password and sync tables, adjust some views32

This should not have an error

Code Block
select count(1) from grouper_sync


v2.5.31Add recent membership tables and views, add PIT 
views, add grouper member columns for USDU
33

This should not have an error

Code Block
select distinct subject_resolution_resolvable from grouper_members;

select count(1) from grouper_recent_mships_load_v;


v2.5.34Add config PIT table and grouper_file table34

This should not have an error

Code Block
select count(1) from grouper_file;


v2.5.38Add provisioning log and sync start columns35

This should not have an error

Code Block
select count(1) from grouper_sync_membership_v;


v2.5.40Add provisioning error codes, and provisioning membership view36

This should not have an error

Code Block
select error_code from grouper_sync_membership;


v2.5.51Add metadata column to grouper_sync_group37

This should not have an error

Code Block
select count(*) from grouper_sync_group where metadata_json is null;


v2.6.1Add zoom user table, adjust grouper_password columns38

This should not have an error

Code Block
select count(1) from grouper_prov_zoom_user;


v2.6.5Adjust zoom status col, add table for failsafes, add col for usdu_eligible39

This should not have an error

Code Block
select count(1) from grouper_members where subject_resolution_eligible is null;


Description

Grouper 2.5+ can handle DDL more efficiently and automatically.  DDL can now also change during Grouper build number (previously we kept DDL largely to minor upgrades).

...