friendica/doc/database/db_session.md

27 lines
758 B
Markdown
Raw Permalink Normal View History

2015-12-28 02:50:25 +01:00
Table session
===========
2021-06-14 08:10:11 +02:00
web session storage
2015-12-28 02:50:25 +01:00
2021-06-14 10:53:37 +02:00
Fields
------
2021-06-14 08:10:11 +02:00
| Field | Description | Type | Null | Key | Default | Extra |
| ------ | ------------- | --------------- | ---- | --- | ------- | -------------- |
| id | sequential ID | bigint unsigned | NO | PRI | NULL | auto_increment |
| sid | | varbinary(255) | NO | | | |
| data | | text | YES | | NULL | |
| expire | | int unsigned | NO | | 0 | |
2015-12-28 02:50:25 +01:00
2021-06-14 10:53:37 +02:00
Indexes
------------
2021-06-14 14:15:10 +02:00
| Name | Fields |
| ------- | ------- |
| PRIMARY | id |
| sid | sid(64) |
| expire | expire |
2021-06-14 10:53:37 +02:00
2015-12-28 02:50:25 +01:00
Return to [database documentation](help/database)