File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1+ -- drop old php column because new installations don't have them (fails in multi-server)
2+ ALTER TABLE ` web_domain` DROP COLUMN ` fastcgi_php_version` ;
3+
4+ -- add php_fpm_socket_dir column to server_php
5+ ALTER TABLE ` server_php` ADD ` php_fpm_socket_dir` varchar (255 ) DEFAULT NULL AFTER ` php_fpm_pool_dir` ;
6+
7+ -- fix #5939
8+ UPDATE ` ftp_user` SET ` expires` = NULL WHERE ` expires` = ' 0000-00-00 00:00:00' ;
Original file line number Diff line number Diff line change 1- -- drop old php column because new installations don't have them (fails in multi-server)
2- ALTER TABLE ` web_domain` DROP COLUMN ` fastcgi_php_version` ;
3-
4- -- add php_fpm_socket_dir column to server_php
5- ALTER TABLE ` server_php` ADD ` php_fpm_socket_dir` varchar (255 ) DEFAULT NULL AFTER ` php_fpm_pool_dir` ;
6-
7- -- fix #5939
8- UPDATE ` ftp_user` SET ` expires` = NULL WHERE ` expires` = ' 0000-00-00 00:00:00' ;
You can’t perform that action at this time.
0 commit comments