Changing the session table structure over to the new one using serialize() to contain all of the data from phpgw_info

This commit is contained in:
jengo 2000-12-14 08:02:08 +00:00
parent 5394d8212d
commit 8efa10967b

View File

@ -57,10 +57,10 @@
$sql = "create table phpgw_sessions (
session_id varchar(255),
session_lid varchar(255),
session_pwd varchar(255),
session_ip varchar(255),
session_logintime int,
session_logintime int,
session_dla int,
session_info text,
unique(session_id)
)";
$db->query($sql);