]> git.mxchange.org Git - friendica.git/blob - doc/database/db_profile_check.md
Transmit mediaType for headers as well / use blank image for empty header
[friendica.git] / doc / database / db_profile_check.md
1 Table profile_check
2 ===========
3
4 DFRN remote auth use
5
6 Fields
7 ------
8
9 | Field   | Description   | Type               | Null | Key | Default | Extra          |
10 | ------- | ------------- | ------------------ | ---- | --- | ------- | -------------- |
11 | id      | sequential ID | int unsigned       | NO   | PRI | NULL    | auto_increment |
12 | uid     | User id       | mediumint unsigned | NO   |     | 0       |                |
13 | cid     | contact.id    | int unsigned       | NO   |     | 0       |                |
14 | dfrn_id |               | varchar(255)       | NO   |     |         |                |
15 | sec     |               | varchar(255)       | NO   |     |         |                |
16 | expire  |               | int unsigned       | NO   |     | 0       |                |
17
18 Indexes
19 ------------
20
21 | Name    | Fields |
22 | ------- | ------ |
23 | PRIMARY | id     |
24 | uid     | uid    |
25 | cid     | cid    |
26
27 Foreign Keys
28 ------------
29
30 | Field | Target Table | Target Field |
31 |-------|--------------|--------------|
32 | uid | [user](help/database/db_user) | uid |
33 | cid | [contact](help/database/db_contact) | id |
34
35 Return to [database documentation](help/database)