diff --git a/catalogue/README.md b/catalogue/README.md index e06518cec6623ad2657f459320eab1d346f4413c..f3fc4821a90cf21b0ae7fe272ce954c7641916d0 100644 --- a/catalogue/README.md +++ b/catalogue/README.md @@ -81,6 +81,10 @@ The six main classes to note are: The `Catalogue` class is an interface class. Its purpose is to allow the CTA catalogue to be implemented by any form of persistent store and not just relational database management systems. The `RdbmsCatalogue` class inherits from `Catalogue` and implements the majority of the CTA catalogue logic. The design goal is to implement as much of the logic in common code as is possible and to only implement specialised code when absolutely necessary. The `InMemoryCatalogue` class is used solely for implementing C++ unit tests. The remaining classes contain the code required to work with specific database management systems. +The following class diagram shows the above 6 main classes plus the `SchemaCreatingSQLiteCatalogue` and `CatalogueRetryWrapper` classes: + + + # Create a new version of the Catalogue Schema ## Introduction