From 0e33ddfad92df4b35d376d01da7d1d6ffd04f108 Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Fri, 7 Sep 2012 11:12:04 +0000 Subject: [PATCH] Fixed mysql table layout for aps_instances table. --- install/sql/ispconfig3.sql | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install/sql/ispconfig3.sql b/install/sql/ispconfig3.sql index 2817f7558..8109d14ea 100644 --- a/install/sql/ispconfig3.sql +++ b/install/sql/ispconfig3.sql @@ -59,6 +59,11 @@ SET FOREIGN_KEY_CHECKS = 0; CREATE TABLE IF NOT EXISTS `aps_instances` ( `id` int(4) NOT NULL AUTO_INCREMENT, + `sys_userid` int(11) unsigned NOT NULL DEFAULT '0', + `sys_groupid` int(11) unsigned NOT NULL DEFAULT '0', + `sys_perm_user` varchar(5) DEFAULT NULL, + `sys_perm_group` varchar(5) DEFAULT NULL, + `sys_perm_other` varchar(5) DEFAULT NULL, `server_id` int(11) NOT NULL DEFAULT '0', `customer_id` int(4) NOT NULL, `package_id` int(4) NOT NULL, -- GitLab