1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-05 05:55:15 +02:00

Changed session_forum to session_page

git-svn-id: file:///svn/phpbb/trunk@161 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Bart van Bragt 2001-04-16 14:32:39 +00:00
parent cc8257f069
commit 834d31c776

View File

@ -215,7 +215,7 @@ CREATE TABLE phpbb_session (
session_user_id int(10) DEFAULT '0' NOT NULL,
session_time int(10) unsigned DEFAULT '0' NOT NULL,
session_ip int(10) DEFAULT '0' NOT NULL,
session_forum int(10),
session_page int(10) DEFAULT '0' NOT NULL,
session_logged_in tinyint(1) DEFAULT '0' NOT NULL,
PRIMARY KEY (session_id)
);