]> git.mxchange.org Git - friendica.git/blob - doc/database/db_parsed_url.md
Pad the lengths of the columns
[friendica.git] / doc / database / db_parsed_url.md
1 Table parsed_url
2 ===========
3 cache for 'parse_url' queries
4
5 | Field | Description | Type | Null | Key | Default | Extra |
6 | ----- | ----------- | ---- | ---- | --- | ------- | ----- |
7 | url_hash | page url hash                     | binary(64) | NO  | PRI | NULL                |  |    
8 | guessing | is the 'guessing' mode active?    | boolean    | NO  | PRI | 0                   |  |    
9 | oembed   | is the data the result of oembed? | boolean    | NO  | PRI | 0                   |  |    
10 | url      | page url                          | text       | NO  |     | NULL                |  |    
11 | content  | page data                         | mediumtext | YES |     | NULL                |  |    
12 | created  | datetime of creation              | datetime   | NO  |     | 0001-01-01 00:00:00 |  |    
13 | expires  | datetime of expiration            | datetime   | NO  |     | 0001-01-01 00:00:00 |  |    
14
15 Return to [database documentation](help/database)