Table: nornix_site.phpsession
Structure Name | Type | Null | Key | Default | Extra | Comment |
---|
id | varbinary(32) | NO | PRI | | | |
---|
val | longblob | NO | | | | |
---|
accessed | timestamp | NO | | CURRENT_TIMESTAMP | | |
---|
IndexesNon-unique | Key | Seq | Column | Collation | Cardinality | Sub part | Packed | Null | Type | Comment |
---|
0 | PRIMARY | 1 | id | A | 36 | | | | BTREE | |
InformationEngine | Row format | Table collation | Create options |
---|
MyISAM | Dynamic | utf8_unicode_ci | |
CREATE TABLE `phpsession` (
`id` varbinary(32) NOT NULL default '',
`val` longblob NOT NULL,
`accessed` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci