]> git.mxchange.org Git - friendica.git/blob - doc/database/db_user.md
Fix docs
[friendica.git] / doc / database / db_user.md
1 Table user
2 ==========
3
4 | Field                    | Description                                                                             | Type                | Null | Key | Default             | Extra          |
5 |--------------------------|-----------------------------------------------------------------------------------------|---------------------|------|-----|---------------------|----------------|
6 | uid                      | sequential ID                                                                           | int(11)             | NO   | PRI | NULL                | auto_increment |
7 | guid                     | A unique identifier for this user                                                       | varchar(64)         | NO   |     |                     |                |
8 | username                 | Name that this user is known by                                                         | varchar(255)        | NO   |     |                     |                |
9 | password                 | encrypted password                                                                      | varchar(255)        | NO   |     |                     |                |
10 | nickname                 | nick- and user name                                                                     | varchar(255)        | NO   | MUL |                     |                |
11 | email                    | the users email address                                                                 | varchar(255)        | NO   |     |                     |                |
12 | openid                   |                                                                                         | varchar(255)        | NO   |     |                     |                |
13 | timezone                 | PHP-legal timezone                                                                      | varchar(128)        | NO   |     |                     |                |
14 | language                 | default language                                                                        | varchar(32)         | NO   |     | en                  |                |
15 | register_date            | timestamp of registration                                                               | datetime            | NO   |     | 0001-01-01 00:00:00 |                |
16 | login_date               | timestamp of last login                                                                 | datetime            | NO   |     | 0001-01-01 00:00:00 |                |
17 | default-location         | Default for item.location                                                               | varchar(255)        | NO   |     |                     |                |
18 | allow_location           | 1 allows to display the location                                                        | tinyint(1)          | NO   |     | 0                   |                |
19 | theme                    | user theme preference                                                                   | varchar(255)        | NO   |     |                     |                |
20 | pubkey                   | RSA public key 4096 bit                                                                 | text                | NO   |     | NULL                |                |
21 | prvkey                   | RSA private key 4096 bit                                                                | text                | NO   |     | NULL                |                |
22 | spubkey                  |                                                                                         | text                | NO   |     | NULL                |                |
23 | sprvkey                  |                                                                                         | text                | NO   |     | NULL                |                |
24 | verified                 | user is verified through email                                                          | tinyint(1) unsigned | NO   |     | 0                   |                |
25 | blocked                  | 1 for user is blocked                                                                   | tinyint(1) unsigned | NO   |     | 0                   |                |
26 | blockwall                | Prohibit contacts to post to the profile page of the user                               | tinyint(1) unsigned | NO   |     | 0                   |                |
27 | hidewall                 | Hide profile details from unkown viewers                                                | tinyint(1) unsigned | NO   |     | 0                   |                |
28 | blocktags                | Prohibit contacts to tag the post of this user                                          | tinyint(1) unsigned | NO   |     | 0                   |                |
29 | unkmail                  | Permit unknown people to send private mails to this user                                | tinyint(1)          | NO   |     | 0                   |                |
30 | cntunkmail               |                                                                                         | int(11)             | NO   |     | 10                  |                |
31 | notify-flags             | email notification options                                                              | int(11) unsigned    | NO   |     | 65535               |                |
32 | page-flags               | page/profile type                                                                       | int(11) unsigned    | NO   |     | 0                   |                |
33 | prvnets                  |                                                                                         | tinyint(1)          | NO   |     | 0                   |                |
34 | pwdreset                 |                                                                                         | varchar(255)        | NO   |     |                     |                |
35 | maxreq                   |                                                                                         | int(11)             | NO   |     | 10                  |                |
36 | expire                   |                                                                                         | int(11) unsigned    | NO   |     | 0                   |                |
37 | account_removed          | if 1 the account is removed                                                             | tinyint(1)          | NO   |     | 0                   |                |
38 | account_expired          |                                                                                         | tinyint(1)          | NO   |     | 0                   |                |
39 | account_expires_on       | timestamp when account expires and will be deleted                                      | datetime            | NO   |     | 0001-01-01 00:00:00 |                |
40 | expire_notification_sent | timestamp of last warning of account expiration                                         | datetime            | NO   |     | 0001-01-01 00:00:00 |                |
41 | def_gid                  |                                                                                         | int(11)             | NO   |     | 0                   |                |
42 | allow_cid                | default permission for this user                                                        | mediumtext          | NO   |     | NULL                |                |
43 | allow_gid                | default permission for this user                                                        | mediumtext          | NO   |     | NULL                |                |
44 | deny_cid                 | default permission for this user                                                        | mediumtext          | NO   |     | NULL                |                |
45 | deny_gid                 | default permission for this user                                                        | mediumtext          | NO   |     | NULL                |                |
46 | openidserver             |                                                                                         | text                | NO   |     | NULL                |                |
47
48 ```
49 /**
50 * page-flags
51 */
52 define ( 'PAGE_NORMAL',            0 );
53 define ( 'PAGE_SOAPBOX',           1 );
54 define ( 'PAGE_COMMUNITY',         2 );
55 define ( 'PAGE_FREELOVE',          3 );
56 define ( 'PAGE_BLOG',              4 );
57 define ( 'PAGE_PRVGROUP',          5 );
58
59 /**
60 * notify-flags
61 */
62 define ( 'NOTIFY_INTRO',    0x0001 );
63 define ( 'NOTIFY_CONFIRM',  0x0002 );
64 define ( 'NOTIFY_WALL',     0x0004 );
65 define ( 'NOTIFY_COMMENT',  0x0008 );
66 define ( 'NOTIFY_MAIL',     0x0010 );
67 define ( 'NOTIFY_SUGGEST',  0x0020 );
68 define ( 'NOTIFY_PROFILE',  0x0040 );
69 define ( 'NOTIFY_TAGSELF',  0x0080 );
70 define ( 'NOTIFY_TAGSHARE', 0x0100 );
71 define ( 'NOTIFY_POKE',     0x0200 );
72 define ( 'NOTIFY_SHARE',    0x0400 );
73
74 define ( 'NOTIFY_SYSTEM',   0x8000 );
75 ```
76
77 Return to [database documentation](help/database)