Merge branch 'develop' of https://github.com/friendica/friendica into develop
[friendica.git/.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(255)  | 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)