diff options
Diffstat (limited to 'phpBB/includes/constants.php')
| -rw-r--r-- | phpBB/includes/constants.php | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php index 68c96a2759..36576e5344 100644 --- a/phpBB/includes/constants.php +++ b/phpBB/includes/constants.php @@ -240,6 +240,8 @@ define('LOGIN_ATTEMPT_TABLE',		$table_prefix . 'login_attempts');  define('MIGRATIONS_TABLE',			$table_prefix . 'migrations');  define('MODERATOR_CACHE_TABLE',		$table_prefix . 'moderator_cache');  define('MODULES_TABLE',				$table_prefix . 'modules'); +define('NOTIFICATION_TYPES_TABLE',	$table_prefix . 'notification_types'); +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'); @@ -273,6 +275,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');  | 
