]> git.mxchange.org Git - friendica.git/blob - doc/database/db_process.md
Merge pull request #12593 from nupplaphil/feat/node.config.php
[friendica.git] / doc / database / db_process.md
1 Table process
2 ===========
3
4 Currently running system processes
5
6 Fields
7 ------
8
9 | Field    | Description                                | Type          | Null | Key | Default             | Extra |
10 | -------- | ------------------------------------------ | ------------- | ---- | --- | ------------------- | ----- |
11 | pid      | The ID of the process                      | int unsigned  | NO   | PRI | NULL                |       |
12 | hostname | The name of the host the process is ran on | varchar(32)   | NO   | PRI | NULL                |       |
13 | command  |                                            | varbinary(32) | NO   |     |                     |       |
14 | created  |                                            | datetime      | NO   |     | 0001-01-01 00:00:00 |       |
15
16 Indexes
17 ------------
18
19 | Name    | Fields        |
20 | ------- | ------------- |
21 | PRIMARY | pid, hostname |
22 | command | command       |
23
24
25 Return to [database documentation](help/database)