X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doc%2Fdatabase%2Fdb_process.md;h=c0eb75f2974b61ac932f9c26c6fb547284837a3e;hb=7676aa790867d9d37f0996483140f505408fd665;hp=648019e835e942089ee612112a9a43802e53cebd;hpb=2cd0c1d30d237806e9c3853aa0645f786e31855c;p=friendica.git diff --git a/doc/database/db_process.md b/doc/database/db_process.md index 648019e835..c0eb75f297 100644 --- a/doc/database/db_process.md +++ b/doc/database/db_process.md @@ -3,10 +3,23 @@ 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)