PHP Classes

File: install/lock_data.sql

Recommend this page to a friend!
  Classes of Lars Moelleken   PHP Session MySQL Handler   install/lock_data.sql   Download  
File: install/lock_data.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Session MySQL Handler
Handler for storing session data in MySQL
Author: By
Last change:
Date: 6 years ago
Size: 228 bytes
 

Contents

Class file image Download
CREATE TABLE lock_data ( lock_hash varchar(128) NOT NULL, lock_time INT(11) UNSIGNED NOT NULL, PRIMARY KEY lock_hash (`lock_hash`), KEY lock_time (`lock_time`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;