friendica/doc/database/db_auth_codes.md

33 lines
947 B
Markdown
Raw Normal View History

2015-12-28 02:50:25 +01:00
Table auth_codes
===========
2021-06-14 08:10:11 +02:00
OAuth usage
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 | | varchar(40) | NO | PRI | NULL | |
| client_id | | varchar(20) | NO | | | |
| redirect_uri | | varchar(200) | NO | | | |
| expires | | int | NO | | 0 | |
| scope | | varchar(250) | NO | | | |
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 |
2021-06-14 10:53:37 +02:00
| client_id | client_id |
Foreign Keys
------------
| Field | Target Table | Target Field |
|-------|--------------|--------------|
| client_id | [clients](help/database/db_clients) | client_id |
2015-12-28 02:50:25 +01:00
Return to [database documentation](help/database)