diff options
| author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-12-15 19:18:26 -0600 |
|---|---|---|
| committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-12-15 19:18:26 -0600 |
| commit | f47e51d6dea9d59a36a6babf1f4033104c93a53d (patch) | |
| tree | 8987bce353d678fcf3bd1d57cef27fe4d2a2ce87 /phpBB/config | |
| parent | c6f138ff12f015543f92d07fb5c93c083a246bab (diff) | |
| download | forums-f47e51d6dea9d59a36a6babf1f4033104c93a53d.tar forums-f47e51d6dea9d59a36a6babf1f4033104c93a53d.tar.gz forums-f47e51d6dea9d59a36a6babf1f4033104c93a53d.tar.bz2 forums-f47e51d6dea9d59a36a6babf1f4033104c93a53d.tar.xz forums-f47e51d6dea9d59a36a6babf1f4033104c93a53d.zip | |
[ticket/11103] Move is_enabled to a separate table for better performance
PHPBB3-11103
Diffstat (limited to 'phpBB/config')
| -rw-r--r-- | phpBB/config/services.yml | 1 | ||||
| -rw-r--r-- | phpBB/config/tables.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/config/services.yml b/phpBB/config/services.yml index c3e4ee2128..8a8b26ab6b 100644 --- a/phpBB/config/services.yml +++ b/phpBB/config/services.yml @@ -157,6 +157,7 @@ services: - @user - %core.root_path% - %core.php_ext% + - %tables.notification_types% - %tables.notifications% - %tables.user_notifications% diff --git a/phpBB/config/tables.yml b/phpBB/config/tables.yml index 528470d6ca..f5685a7cd9 100644 --- a/phpBB/config/tables.yml +++ b/phpBB/config/tables.yml @@ -1,6 +1,7 @@ parameters: tables.config: %core.table_prefix%config tables.ext: %core.table_prefix%ext + tables.notification_types: %core.table_prefix%notification_types tables.notifications: %core.table_prefix%notifications tables.user_notifications: %core.table_prefix%user_notifications tables.users: %core.table_prefix%users |
