]> git.mxchange.org Git - friendica.git/blob - doc/database/db_notify.md
79c1c73593266673ea14ac3f86995abe56c85116
[friendica.git] / doc / database / db_notify.md
1 Table notify
2 ===========
3 notifications
4
5 | Field | Description | Type | Null | Key | Default | Extra |
6 | ----- | ----------- | ---- | ---- | --- | ------- | ----- |
7 | id            | sequential ID                                 | int unsigned       | NO  | PRI | NULL                | auto_increment |    
8 | type          |                                               | smallint unsigned  | NO  |     | 0                   |                |    
9 | name          |                                               | varchar(255)       | NO  |     |                     |                |    
10 | url           |                                               | varchar(255)       | NO  |     |                     |                |    
11 | photo         |                                               | varchar(255)       | NO  |     |                     |                |    
12 | date          |                                               | datetime           | NO  |     | 0001-01-01 00:00:00 |                |    
13 | msg           |                                               | mediumtext         | YES |     | NULL                |                |    
14 | uid           | Owner User id                                 | mediumint unsigned | NO  |     | 0                   |                |    
15 | link          |                                               | varchar(255)       | NO  |     |                     |                |    
16 | iid           |                                               | int unsigned       | YES |     | NULL                |                |    
17 | parent        |                                               | int unsigned       | YES |     | NULL                |                |    
18 | uri-id        | Item-uri id of the related post               | int unsigned       | YES |     | NULL                |                |    
19 | parent-uri-id | Item-uri id of the parent of the related post | int unsigned       | YES |     | NULL                |                |    
20 | seen          |                                               | boolean            | NO  |     | 0                   |                |    
21 | verb          |                                               | varchar(100)       | NO  |     |                     |                |    
22 | otype         |                                               | varchar(10)        | NO  |     |                     |                |    
23 | name_cache    | Cached bbcode parsing of name                 | tinytext           | YES |     | NULL                |                |    
24 | msg_cache     | Cached bbcode parsing of msg                  | mediumtext         | YES |     | NULL                |                |    
25
26 Return to [database documentation](help/database)