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 | | |
|---|
Indexes| Non-unique | Key | Seq | Column | Collation | Cardinality | Sub part | Packed | Null | Type | Comment |
|---|
| 0 | PRIMARY | 1 | id | A | 36 | | | | BTREE | |
Information| Engine | 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