friendica/doc/database/db_post-collection.md

30 lines
901 B
Markdown
Raw Normal View History

2022-04-06 15:34:11 +02:00
Table post-collection
===========
Collection of posts
Fields
------
| Field | Description | Type | Null | Key | Default | Extra |
| ------ | --------------------------------------------------------- | ---------------- | ---- | --- | ------- | ----- |
| uri-id | Id of the item-uri table entry that contains the item uri | int unsigned | NO | PRI | NULL | |
2022-04-06 17:02:21 +02:00
| type | 0 - Featured | tinyint unsigned | NO | PRI | 0 | |
2022-04-06 15:34:11 +02:00
Indexes
------------
| Name | Fields |
| ------- | ------------ |
| PRIMARY | uri-id, type |
| type | type |
Foreign Keys
------------
| Field | Target Table | Target Field |
|-------|--------------|--------------|
| uri-id | [item-uri](help/database/db_item-uri) | id |
Return to [database documentation](help/database)