File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 11
22-- we need those to fix some installations failing in 0089 and 0090
3- ALTER TABLE web_domain ROW_FORMAT= DYNAMIC;
3+ ALTER TABLE ` web_domain` ROW_FORMAT= DYNAMIC;
44ALTER IGNORE TABLE ` web_domain` ADD COLUMN ` proxy_protocol` ENUM(' n' ,' y' ) NOT NULL DEFAULT ' n' AFTER ` log_retention` ;
55ALTER IGNORE TABLE ` web_domain` ADD ` backup_format_web` VARCHAR ( 255 ) NOT NULL default ' default' AFTER ` backup_copies` ;
66ALTER IGNORE TABLE ` web_domain` ADD ` backup_format_db` VARCHAR ( 255 ) NOT NULL default ' gzip' AFTER ` backup_format_web` ;
Original file line number Diff line number Diff line change @@ -2091,7 +2091,7 @@ CREATE TABLE `web_domain` (
20912091 ` last_jailkit_hash` varchar (255 ) DEFAULT NULL ,
20922092 PRIMARY KEY (` domain_id` ),
20932093 UNIQUE KEY ` serverdomain` ( ` server_id` , ` ip_address` , ` domain` )
2094- ) DEFAULT CHARSET= utf8 AUTO_INCREMENT= 1 ;
2094+ ) ENGINE = InnoDB ROW_FORMAT = DYNAMIC DEFAULT CHARSET= utf8 AUTO_INCREMENT= 1 ;
20952095
20962096-- --------------------------------------------------------
20972097
You can’t perform that action at this time.
0 commit comments