1
0
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:
Cameron
2020-06-02 13:43:21 -07:00
parent 988f5e32cd
commit 7439d599f8
6 changed files with 62 additions and 35 deletions

View File

@@ -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`
#