X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doc%2Fdatabase%2Fdb_process.md;h=c0eb75f2974b61ac932f9c26c6fb547284837a3e;hb=7676aa790867d9d37f0996483140f505408fd665;hp=8a2ad1ac88493f39f54a8e85779646fb1197f725;hpb=84ab5d61594ed92e0e28415d6c33df267a3636c5;p=friendica.git diff --git a/doc/database/db_process.md b/doc/database/db_process.md index 8a2ad1ac88..c0eb75f297 100644 --- a/doc/database/db_process.md +++ b/doc/database/db_process.md @@ -1,11 +1,25 @@ Table process =========== + Currently running system processes -| Field | Description | Type | Null | Key | Default | Extra | -| ----- | ----------- | ---- | ---- | --- | ------- | ----- | -| pid | | int unsigned | YES | PRI | | | -| command | | varbinary(32) | YES | | | | -| created | | datetime | YES | | 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)