Skip to content

Commit 28cf0d3

Browse files
author
Till Brehm
committed
Fixed #4217 folder_directive_snippets default value.
1 parent 966a2c2 commit 28cf0d3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE `web_domain` CHANGE `folder_directive_snippets` `folder_directive_snippets` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL;

install/sql/ispconfig3.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1985,7 +1985,7 @@ CREATE TABLE `web_domain` (
19851985
`enable_pagespeed` ENUM('y','n') NOT NULL DEFAULT 'n',
19861986
`http_port` int(11) unsigned NOT NULL DEFAULT '80',
19871987
`https_port` int(11) unsigned NOT NULL DEFAULT '443',
1988-
`folder_directive_snippets` text NOT NULL,
1988+
`folder_directive_snippets` text,
19891989
PRIMARY KEY (`domain_id`),
19901990
UNIQUE KEY `serverdomain` ( `server_id` , `ip_address`, `domain` )
19911991
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

0 commit comments

Comments
 (0)