From 6d170a09b4dc6ecd0aa0ce2953d8c356bebffb42 Mon Sep 17 00:00:00 2001 From: Jan Kvetina Date: Wed, 5 Jan 2022 19:04:26 +0100 Subject: [PATCH 1/3] Rename INSTALL_TABLES.sql to CREATE_OBJECTS.sql --- _install/{INSTALL_TABLES.sql => CREATE_OBJECTS.sql} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename _install/{INSTALL_TABLES.sql => CREATE_OBJECTS.sql} (100%) diff --git a/_install/INSTALL_TABLES.sql b/_install/CREATE_OBJECTS.sql similarity index 100% rename from _install/INSTALL_TABLES.sql rename to _install/CREATE_OBJECTS.sql From a4c4e3c1d59b3158c3a698dd27fc49c674d751a1 Mon Sep 17 00:00:00 2001 From: Jan Kvetina Date: Wed, 5 Jan 2022 19:09:47 +0100 Subject: [PATCH 2/3] Create README.md --- packages/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 packages/README.md diff --git a/packages/README.md b/packages/README.md new file mode 100644 index 0000000..d60110c --- /dev/null +++ b/packages/README.md @@ -0,0 +1,14 @@ +# Packages + +### APP +- generic functions and procedures for logging, user & session management, APEX things... + +
+ +### APP_ACTIONS +- more complex procedures for handling some actions in APEX + +
+ +### A770 +- overrides and app roles just for app 770 From f3e173e08c3b9ca026bbbee7e67e1da3e4952885 Mon Sep 17 00:00:00 2001 From: Jan Kvetina Date: Wed, 5 Jan 2022 20:03:12 +0100 Subject: [PATCH 3/3] Create README.md --- tables/README.md | 51 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 tables/README.md diff --git a/tables/README.md b/tables/README.md new file mode 100644 index 0000000..cbe0ace --- /dev/null +++ b/tables/README.md @@ -0,0 +1,51 @@ +# Tables + +### Apps, Roles, Users, Sessions + +Table Name | Description +---------- | ----------- +APPS | List of apps +ROLES | List of roles +SESSIONS | List of sessions +USER_ROLES | List of roles assigned to users +USERS | List of users + +
+ +### Navigation + +Table Name | Description +---------- | ----------- +NAVIGATION | Navigation items + +
+ +### Logging + +Table Name | Description +---------- | ----------- +EVENTS | List of events interesting for business +LOG_EVENTS | List of business events +LOGS | Various logs raised in application; daily partitions +LOGS_BLACKLIST | Define what logs will or wont be tracked + +
+ +### Settings + +Table Name | Description +---------- | ----------- +SETTING_CONTEXTS | List of contexts for settings overrides +SETTINGS | List of settings shared through whole app + +
+ +### Others + +Table Name | Description +---------- | ----------- +USER_SOURCE_VIEWS | User views source converted to lines + +
+ +