mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-19 15:01:33 +02:00
Initial Lastread support. Mind the schema and config changes\!
git-svn-id: file:///svn/phpbb/trunk@3102 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -191,6 +191,18 @@ CREATE TABLE phpbb_icons (
|
||||
PRIMARY KEY (icons_id)
|
||||
);
|
||||
|
||||
# --------------------------------------------------------
|
||||
#
|
||||
# Table structure for table 'phpbb_lastread'
|
||||
#
|
||||
CREATE TABLE phpbb_lastread (
|
||||
user_id mediumint(9) NOT NULL default '0',
|
||||
lastread_type tinyint(4) NOT NULL default '0',
|
||||
forum_id smallint(6) NOT NULL default '0',
|
||||
topic_id mediumint(9) NOT NULL default '0',
|
||||
lastread_time int(4) NOT NULL default '0',
|
||||
PRIMARY KEY (user_id,topic_id)
|
||||
);
|
||||
|
||||
# --------------------------------------------------------
|
||||
#
|
||||
|
Reference in New Issue
Block a user