# #This is the table that holds the session info - just create it as is! # CREATE TABLE sessions ( sesskey varchar(32) NOT NULL, expiry int(11) unsigned DEFAULT '0' NOT NULL, value text NOT NULL, PRIMARY KEY (sesskey) );