]> git.mxchange.org Git - friendica.git/blob - doc/database/db_process.md
Merge pull request #10895 from annando/index
[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     |             | int unsigned  | NO   | PRI | NULL                |       |
12 | command |             | varbinary(32) | NO   |     |                     |       |
13 | created |             | datetime      | NO   |     | 0001-01-01 00:00:00 |       |
14
15 Indexes
16 ------------
17
18 | Name    | Fields  |
19 | ------- | ------- |
20 | PRIMARY | pid     |
21 | command | command |
22
23
24 Return to [database documentation](help/database)