friendica/doc/database/db_process.md

26 lines
967 B
Markdown
Raw Permalink Normal View History

Table process
===========
2021-06-14 08:10:11 +02:00
Currently running system processes
2021-06-14 10:53:37 +02:00
Fields
------
2021-11-07 18:04:02 +01:00
| 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(255) | NO | PRI | NULL | |
2021-11-07 18:04:02 +01:00
| command | | varbinary(32) | NO | | | |
| created | | datetime | NO | | 0001-01-01 00:00:00 | |
2021-06-14 10:53:37 +02:00
Indexes
------------
2021-11-07 17:10:47 +01:00
| Name | Fields |
| ------- | ------------- |
| PRIMARY | pid, hostname |
| command | command |
2021-06-14 10:53:37 +02:00
Return to [database documentation](help/database)