Add PathPrefix to Servers Table

This commit is contained in:
Isaac Connor 2018-07-09 12:09:10 -04:00
parent 90e4c2632d
commit 34299aff2c
1 changed files with 1 additions and 0 deletions

View File

@ -556,6 +556,7 @@ DROP TABLE IF EXISTS `Servers`;
CREATE TABLE `Servers` (
`Id` int(10) unsigned NOT NULL auto_increment,
`Hostname` TEXT,
`PathPrefix` TEXT,
`Name` varchar(64) NOT NULL default '',
`State_Id` int(10) unsigned,
`Status` enum('Unknown','NotRunning','Running') NOT NULL default 'Unknown',