aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/constants.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2012-12-13 19:56:39 -0600
committerNathan Guse <nathaniel.guse@gmail.com>2012-12-13 19:56:39 -0600
commitbec05a11f38cd57d7e7a6c7f64ecdb7351e24fc0 (patch)
treeca5839c4c269ce37cc62ea1847fc7565707c7c9d /phpBB/includes/constants.php
parentddd874ba76366cebe3cc30df6daa1974e29f34d1 (diff)
downloadforums-bec05a11f38cd57d7e7a6c7f64ecdb7351e24fc0.tar
forums-bec05a11f38cd57d7e7a6c7f64ecdb7351e24fc0.tar.gz
forums-bec05a11f38cd57d7e7a6c7f64ecdb7351e24fc0.tar.bz2
forums-bec05a11f38cd57d7e7a6c7f64ecdb7351e24fc0.tar.xz
forums-bec05a11f38cd57d7e7a6c7f64ecdb7351e24fc0.zip
[ticket/11103] Add constants for the tables
PHPBB3-11103
Diffstat (limited to 'phpBB/includes/constants.php')
-rw-r--r--phpBB/includes/constants.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php
index 68af41ab20..7a3c73e987 100644
--- a/phpBB/includes/constants.php
+++ b/phpBB/includes/constants.php
@@ -239,6 +239,7 @@ define('LOG_TABLE', $table_prefix . 'log');
define('LOGIN_ATTEMPT_TABLE', $table_prefix . 'login_attempts');
define('MODERATOR_CACHE_TABLE', $table_prefix . 'moderator_cache');
define('MODULES_TABLE', $table_prefix . 'modules');
+define('NOTIFICATIONS_TABLE', $table_prefix . 'notifications');
define('POLL_OPTIONS_TABLE', $table_prefix . 'poll_options');
define('POLL_VOTES_TABLE', $table_prefix . 'poll_votes');
define('POSTS_TABLE', $table_prefix . 'posts');
@@ -272,6 +273,7 @@ define('TOPICS_POSTED_TABLE', $table_prefix . 'topics_posted');
define('TOPICS_TRACK_TABLE', $table_prefix . 'topics_track');
define('TOPICS_WATCH_TABLE', $table_prefix . 'topics_watch');
define('USER_GROUP_TABLE', $table_prefix . 'user_group');
+define('USER_NOTIFICATIONS_TABLE', $table_prefix . 'user_notifications');
define('USERS_TABLE', $table_prefix . 'users');
define('WARNINGS_TABLE', $table_prefix . 'warnings');
define('WORDS_TABLE', $table_prefix . 'words');