Add 'service' column to devices table to reference the code/purpose running on board

This commit is contained in:
Junior 2025-03-09 20:46:12 -04:00
parent 95aa3bc7c4
commit 2fba4db0af

View File

@ -26,6 +26,7 @@ CREATE TABLE `devices` (
`ipaddress` varchar(20) NOT NULL,
`label` varchar(255) NOT NULL DEFAULT '',
`board` varchar(255) NOT NULL DEFAULT '',
`service` varchar(255) NOT NULL DEFAULT '',
`lastupdate` datetime NOT NULL,
PRIMARY KEY (`mac`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;