MDL-79397 reportbuilder: update existing entity table definitions.

This commit is contained in:
Paul Holden
2023-12-07 17:19:01 +00:00
parent fb53d081da
commit 7143cf4cbc
27 changed files with 158 additions and 131 deletions
@@ -40,12 +40,14 @@ require_once("{$CFG->dirroot}/notes/lib.php");
class note extends base {
/**
* Database tables that this entity uses and their default aliases
* Database tables that this entity uses
*
* @return array
* @return string[]
*/
protected function get_default_table_aliases(): array {
return ['post' => 'np'];
protected function get_default_tables(): array {
return [
'post',
];
}
/**