File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1+ ALTER TABLE ` web_domain` ADD COLUMN ` ssl_letsencrypt_exclude` enum(' n' ,' y' ) NOT NULL DEFAULT ' n' AFTER ` ssl_letsencrypt` ;
2+ ALTER TABLE ` remote_user` ADD ` remote_access` ENUM(' y' ,' n' ) NOT NULL DEFAULT ' y' AFTER ` remote_password` ;
3+ ALTER TABLE ` remote_user` ADD ` remote_ips` TEXT AFTER ` remote_access` ;
4+ ALTER TABLE ` server_php` ADD ` active` enum(' y' ,' n' ) NOT NULL DEFAULT ' y' AFTER ` php_fpm_pool_dir` ;
5+ ALTER TABLE ` web_domain` CHANGE ` log_retention` ` log_retention` INT (11 ) NOT NULL DEFAULT ' 10' ;
Original file line number Diff line number Diff line change 1- ALTER TABLE ` web_domain` ADD COLUMN ` ssl_letsencrypt_exclude` enum(' n' ,' y' ) NOT NULL DEFAULT ' n' AFTER ` ssl_letsencrypt` ;
2- ALTER TABLE ` remote_user` ADD ` remote_access` ENUM(' y' ,' n' ) NOT NULL DEFAULT ' y' AFTER ` remote_password` ;
3- ALTER TABLE ` remote_user` ADD ` remote_ips` TEXT AFTER ` remote_access` ;
4- ALTER TABLE ` server_php` ADD ` active` enum(' y' ,' n' ) NOT NULL DEFAULT ' y' AFTER ` php_fpm_pool_dir` ;
5- ALTER TABLE ` web_domain` CHANGE ` log_retention` ` log_retention` INT (11 ) NOT NULL DEFAULT ' 10' ;
1+
You can’t perform that action at this time.
0 commit comments