]> git.mxchange.org Git - friendica.git/blob - doc/database/db_session.md
d01b5736471a01334d7a4ab45630de1ce27cb63f
[friendica.git] / doc / database / db_session.md
1 Table session
2 ===========
3
4 web session storage
5
6 | Field  | Description   | Type            | Null | Key | Default | Extra          |
7 | ------ | ------------- | --------------- | ---- | --- | ------- | -------------- |
8 | id     | sequential ID | bigint unsigned | NO   | PRI | NULL    | auto_increment |
9 | sid    |               | varbinary(255)  | NO   |     |         |                |
10 | data   |               | text            | YES  |     | NULL    |                |
11 | expire |               | int unsigned    | NO   |     | 0       |                |
12
13 Return to [database documentation](help/database)