]> git.mxchange.org Git - friendica.git/blob - doc/database/db_profile_field.md
Reversed "null"
[friendica.git] / doc / database / db_profile_field.md
1 Table profile_field
2 ===========
3 Custom profile fields
4
5 | Field | Description | Type | Null | Key | Default | Extra |
6 | ----- | ----------- | ---- | ---- | --- | ------- | ----- |
7 | id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |    
8 | uid | Owner user id | mediumint unsigned | NO |  | 0 |  |    
9 | order | Field ordering per user | mediumint unsigned | NO |  | 1 |  |    
10 | psid | ID of the permission set of this profile field - 0 = public | int unsigned | YES |  | NULL |  |    
11 | label | Label of the field | varchar(255) | NO |  |  |  |    
12 | value | Value of the field | text | YES |  | NULL |  |    
13 | created | creation time | datetime | NO |  | 0001-01-01 00:00:00 |  |    
14 | edited | last edit time | datetime | NO |  | 0001-01-01 00:00:00 |  |    
15
16 Return to [database documentation](help/database)