diff options
author | Simon Rettberg | 2021-09-21 16:52:06 +0200 |
---|---|---|
committer | Simon Rettberg | 2022-03-09 15:06:54 +0100 |
commit | 67e6b6c9981207d7d658f2ad2bf1c39b75c099c7 (patch) | |
tree | d2f54c424dd983a1500acf0d3d0bc3bbfee6e9cd /modules-available/passthrough/install.inc.php | |
parent | [statistics] Support new json-format of hardware info from client (diff) | |
download | slx-admin-67e6b6c9981207d7d658f2ad2bf1c39b75c099c7.tar.gz slx-admin-67e6b6c9981207d7d658f2ad2bf1c39b75c099c7.tar.xz slx-admin-67e6b6c9981207d7d658f2ad2bf1c39b75c099c7.zip |
[passthrough] New module for managing hardware passthrough for QEMU
Diffstat (limited to 'modules-available/passthrough/install.inc.php')
-rw-r--r-- | modules-available/passthrough/install.inc.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules-available/passthrough/install.inc.php b/modules-available/passthrough/install.inc.php new file mode 100644 index 00000000..e08be38b --- /dev/null +++ b/modules-available/passthrough/install.inc.php @@ -0,0 +1,9 @@ +<?php + +$result[] = tableCreate('passthrough_group', " + `groupid` varchar(32) CHARACTER SET ascii DEFAULT NULL, + `title` varchar(200) NOT NULL, + PRIMARY KEY (`groupid`) +"); + +responseFromArray($result);
\ No newline at end of file |