]> git.mxchange.org Git - friendica.git/blob - doc/database/db_report-post.md
Merge pull request #12593 from nupplaphil/feat/node.config.php
[friendica.git] / doc / database / db_report-post.md
1 Table report-post
2 ===========
3
4
5
6 Fields
7 ------
8
9 | Field  | Description                 | Type             | Null | Key | Default | Extra |
10 | ------ | --------------------------- | ---------------- | ---- | --- | ------- | ----- |
11 | rid    | Report id                   | int unsigned     | NO   | PRI | NULL    |       |
12 | uri-id | Uri-id of the reported post | int unsigned     | NO   | PRI | NULL    |       |
13 | status | Status of the reported post | tinyint unsigned | YES  |     | NULL    |       |
14
15 Indexes
16 ------------
17
18 | Name    | Fields      |
19 | ------- | ----------- |
20 | PRIMARY | rid, uri-id |
21 | uri-id  | uri-id      |
22
23 Foreign Keys
24 ------------
25
26 | Field | Target Table | Target Field |
27 |-------|--------------|--------------|
28 | rid | [report](help/database/db_report) | id |
29 | uri-id | [item-uri](help/database/db_item-uri) | id |
30
31 Return to [database documentation](help/database)