mirror of
https://github.com/e107inc/e107.git
synced 2025-08-11 00:54:49 +02:00
Issue #4176 - Incremental introduction of database sessions - Experimental (work in progress)
This commit is contained in:
@@ -468,6 +468,20 @@ CREATE TABLE rate (
|
||||
) ENGINE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `session`
|
||||
#
|
||||
|
||||
CREATE TABLE session (
|
||||
session_id varchar(255) NOT NULL default '',
|
||||
session_expires int(10) unsigned NOT NULL default 0,
|
||||
session_user int(10) unsigned default NULL,
|
||||
session_data text NOT NULL,
|
||||
PRIMARY KEY (session_id)
|
||||
) ENGINE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
|
||||
#
|
||||
# Table structure for table `submitnews`
|
||||
#
|
||||
|
Reference in New Issue
Block a user