aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-12-15 16:40:35 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-12-15 16:40:35 +0000
commit284dbec9cfcaa1479e56582540c25a1590878cf7 (patch)
tree52c24f42cfd4a1c2c1f3904089646a96cc461fa2 /phpBB/db
parentec67266aa508fa6be5764c5f78fc8ae0743ae693 (diff)
downloadforums-284dbec9cfcaa1479e56582540c25a1590878cf7.tar
forums-284dbec9cfcaa1479e56582540c25a1590878cf7.tar.gz
forums-284dbec9cfcaa1479e56582540c25a1590878cf7.tar.bz2
forums-284dbec9cfcaa1479e56582540c25a1590878cf7.tar.xz
forums-284dbec9cfcaa1479e56582540c25a1590878cf7.zip
Various changes to accompany session updates ... MSSQL users should be prepared to alter or remove the session_last_visit field or face potential problems
git-svn-id: file:///svn/phpbb/trunk@1588 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db')
-rw-r--r--phpBB/db/schemas/mssql_schema.sql1
-rw-r--r--phpBB/db/schemas/mysql_schema.sql1
-rw-r--r--phpBB/db/schemas/postgres_schema.sql1
3 files changed, 0 insertions, 3 deletions
diff --git a/phpBB/db/schemas/mssql_schema.sql b/phpBB/db/schemas/mssql_schema.sql
index 2cd1613e96..b13f5a4939 100644
--- a/phpBB/db/schemas/mssql_schema.sql
+++ b/phpBB/db/schemas/mssql_schema.sql
@@ -181,7 +181,6 @@ CREATE TABLE [phpbb_sessions] (
[session_user_id] [int] NOT NULL ,
[session_start] [int] NULL ,
[session_time] [int] NULL ,
- [session_last_visit] [int] NULL ,
[session_ip] [char] (8) NOT NULL ,
[session_page] [int] NULL ,
[session_logged_in] [smallint] NULL
diff --git a/phpBB/db/schemas/mysql_schema.sql b/phpBB/db/schemas/mysql_schema.sql
index 4b39e46014..0b8fdf810c 100644
--- a/phpBB/db/schemas/mysql_schema.sql
+++ b/phpBB/db/schemas/mysql_schema.sql
@@ -295,7 +295,6 @@ CREATE TABLE phpbb_sessions (
session_user_id mediumint(8) DEFAULT '0' NOT NULL,
session_start int(11) DEFAULT '0' NOT NULL,
session_time int(11) DEFAULT '0' NOT NULL,
- session_last_visit int(11) DEFAULT '0' NOT NULL,
session_ip char(8) DEFAULT '0' NOT NULL,
session_page int(11) DEFAULT '0' NOT NULL,
session_logged_in tinyint(1) DEFAULT '0' NOT NULL,
diff --git a/phpBB/db/schemas/postgres_schema.sql b/phpBB/db/schemas/postgres_schema.sql
index 9c56c72479..e6561c6c08 100644
--- a/phpBB/db/schemas/postgres_schema.sql
+++ b/phpBB/db/schemas/postgres_schema.sql
@@ -276,7 +276,6 @@ CREATE TABLE phpbb_sessions (
session_user_id int4 DEFAULT '0' NOT NULL,
session_start int4 DEFAULT '0' NOT NULL,
session_time int4 DEFAULT '0' NOT NULL,
- session_last_visit int4 DEFAULT '0' NOT NULL,
session_ip char(8) DEFAULT '0' NOT NULL,
session_page int4 DEFAULT '0' NOT NULL,
session_logged_in int2 DEFAULT '0' NOT NULL,