X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doc%2Fdatabase%2Fdb_session.md;h=794e49c6a78f86780e19c7af36c68cd1b69f22cd;hb=f9572d9df762b9ce92fbe4c1a18ff59b9f4f3b01;hp=80916366a2d905394ad4fe19eaadc9d2b0c09b91;hpb=31db9dbef7f6a4f98a6c29d15493bcffb0c39929;p=friendica.git diff --git a/doc/database/db_session.md b/doc/database/db_session.md index 80916366a2..794e49c6a7 100644 --- a/doc/database/db_session.md +++ b/doc/database/db_session.md @@ -1,12 +1,26 @@ Table session =========== + web session storage -| Field | Description | Type | Null | Key | Default | Extra | -| ----- | ----------- | ---- | ---- | --- | ------- | ----- | -| id | sequential ID | bigint unsigned | YES | PRI | NULL | auto_increment | -| sid | | varbinary(255) | YES | | | | -| data | | text | NO | | NULL | | -| expire | | int unsigned | YES | | 0 | | +Fields +------ + +| 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 | | + +Indexes +------------ + +| Name | Fields | +| ------- | ------- | +| PRIMARY | id | +| sid | sid(64) | +| expire | expire | + Return to [database documentation](help/database)