]> git.mxchange.org Git - friendica.git/blobdiff - doc/database/db_process.md
Merge pull request #12407 from HankG/friendica-api-photo-endpoint-updates
[friendica.git] / doc / database / db_process.md
index 6e823ce968b030a080fddacaeef4dde124bff31d..c0eb75f2974b61ac932f9c26c6fb547284837a3e 100644 (file)
@@ -1,11 +1,25 @@
 Table process
 ===========
+
 Currently running system processes
 
-| Field   | Description | Type          | Null | Key | Default             | Extra |    
-| ------- | ----------- | ------------- | ---- | --- | ------------------- | ----- |    
-| pid     |             | int unsigned  | NO   | PRI | NULL                |       |    
-| command |             | varbinary(32) | NO   |     |                     |       |    
-| created |             | datetime      | NO   |     | 0001-01-01 00:00:00 |       |    
+Fields
+------
+
+| Field    | Description                                | Type          | Null | Key | Default             | Extra |
+| -------- | ------------------------------------------ | ------------- | ---- | --- | ------------------- | ----- |
+| pid      | The ID of the process                      | int unsigned  | NO   | PRI | NULL                |       |
+| hostname | The name of the host the process is ran on | varchar(32)   | NO   | PRI | NULL                |       |
+| command  |                                            | varbinary(32) | NO   |     |                     |       |
+| created  |                                            | datetime      | NO   |     | 0001-01-01 00:00:00 |       |
+
+Indexes
+------------
+
+| Name    | Fields        |
+| ------- | ------------- |
+| PRIMARY | pid, hostname |
+| command | command       |
+
 
 Return to [database documentation](help/database)