Updated database documentation

This commit is contained in:
Michael 2021-11-07 16:10:47 +00:00
commit d7502848fa
3 changed files with 12 additions and 12 deletions

View file

@ -1316,10 +1316,10 @@ CREATE TABLE IF NOT EXISTS `post-user-notification` (
--
CREATE TABLE IF NOT EXISTS `process` (
`pid` int unsigned NOT NULL COMMENT 'The process ID of the current node',
`hostname` varchar(32) NOT NULL COMMENT 'The hostname of the node',
`hostname` varchar(32) NOT NULL COMMENT 'The hostname of the current node',
`command` varbinary(32) NOT NULL DEFAULT '' COMMENT '',
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
PRIMARY KEY(`pid`, `hostname`),
PRIMARY KEY(`pid`,`hostname`),
INDEX `command` (`command`)
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Currently running system processes';