]> git.mxchange.org Git - friendica.git/blob - doc/database/db_item-uri.md
Revert "Rename contact table column to ffi_keyword_denylist"
[friendica.git] / doc / database / db_item-uri.md
1 Table item-uri
2 ===========
3
4 URI and GUID for items
5
6 Fields
7 ------
8
9 | Field | Description                     | Type           | Null | Key | Default | Extra          |
10 | ----- | ------------------------------- | -------------- | ---- | --- | ------- | -------------- |
11 | id    |                                 | int unsigned   | NO   | PRI | NULL    | auto_increment |
12 | uri   | URI of an item                  | varbinary(383) | NO   |     | NULL    |                |
13 | guid  | A unique identifier for an item | varbinary(255) | YES  |     | NULL    |                |
14
15 Indexes
16 ------------
17
18 | Name    | Fields      |
19 | ------- | ----------- |
20 | PRIMARY | id          |
21 | uri     | UNIQUE, uri |
22 | guid    | guid        |
23
24
25 Return to [database documentation](help/database)