summaryrefslogtreecommitdiffstats
path: root/modules-available/passthrough/install.inc.php
diff options
context:
space:
mode:
authorSimon Rettberg2021-09-21 16:52:06 +0200
committerSimon Rettberg2021-09-21 16:52:06 +0200
commit0156024a414ea1503e539cb2a30d05a422d4cd16 (patch)
treea92eb114deb3a0e44252a2c3d90928b5c6a673d1 /modules-available/passthrough/install.inc.php
parent[statistics] Query builder WIP (diff)
downloadslx-admin-0156024a414ea1503e539cb2a30d05a422d4cd16.tar.gz
slx-admin-0156024a414ea1503e539cb2a30d05a422d4cd16.tar.xz
slx-admin-0156024a414ea1503e539cb2a30d05a422d4cd16.zip
Passthrough WIP
Diffstat (limited to 'modules-available/passthrough/install.inc.php')
-rw-r--r--modules-available/passthrough/install.inc.php9
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