]> git.mxchange.org Git - friendica.git/blob - doc/database/db_process.md
8ffec5767155ba600a6bb4c278e1550b3cac42b1
[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 process ID of the current node | int unsigned  | NO   | PRI | NULL                |       |
12 | hostname | The hostname of the current node   | 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)