Skip to content

Commit ee40c2c

Browse files
author
Till Brehm
committed
Fixed problem with php-fpm-chroot field in web_domain table.
1 parent 15a10dd commit ee40c2c

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

install/sql/incremental/upd_0087.sql

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
ALTER TABLE `sys_datalog` ADD `session_id` varchar(64) NOT NULL DEFAULT '' AFTER `error`;
22
ALTER TABLE `sys_user` CHANGE `sys_userid` `sys_userid` INT(11) UNSIGNED NOT NULL DEFAULT '1' COMMENT 'Created by userid';
33
ALTER TABLE `sys_user` CHANGE `sys_groupid` `sys_groupid` INT(11) UNSIGNED NOT NULL DEFAULT '1' COMMENT 'Created by groupid';
4+
ALTER TABLE `web_domain` ADD COLUMN `php_fpm_chroot` enum('n','y') NOT NULL DEFAULT 'n' AFTER `php_fpm_use_socket`;

install/sql/ispconfig3.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1965,6 +1965,7 @@ CREATE TABLE `web_domain` (
19651965
`apache_directives` mediumtext,
19661966
`nginx_directives` mediumtext,
19671967
`php_fpm_use_socket` ENUM('n','y') NOT NULL DEFAULT 'y',
1968+
`php_fpm_chroot` enum('n','y') NOT NULL DEFAULT 'n',
19681969
`pm` enum('static','dynamic','ondemand') NOT NULL DEFAULT 'dynamic',
19691970
`pm_max_children` int(11) NOT NULL DEFAULT '10',
19701971
`pm_start_servers` int(11) NOT NULL DEFAULT '2',

0 commit comments

Comments
 (0)