]> git.mxchange.org Git - friendica.git/blob - doc/database/db_post-activity.md
Merge pull request #13390 from annando/channel
[friendica.git] / doc / database / db_post-activity.md
1 Table post-activity
2 ===========
3
4 Original remote activity
5
6 Fields
7 ------
8
9 | Field    | Description                                               | Type         | Null | Key | Default | Extra |
10 | -------- | --------------------------------------------------------- | ------------ | ---- | --- | ------- | ----- |
11 | uri-id   | Id of the item-uri table entry that contains the item uri | int unsigned | NO   | PRI | NULL    |       |
12 | activity | Original activity                                         | mediumtext   | YES  |     | NULL    |       |
13 | received |                                                           | datetime     | YES  |     | NULL    |       |
14
15 Indexes
16 ------------
17
18 | Name    | Fields |
19 | ------- | ------ |
20 | PRIMARY | uri-id |
21
22 Foreign Keys
23 ------------
24
25 | Field | Target Table | Target Field |
26 |-------|--------------|--------------|
27 | uri-id | [item-uri](help/database/db_item-uri) | id |
28
29 Return to [database documentation](help/database)