Skip to content

Commit 5e6c798

Browse files
author
Marius Burkard
committed
Merge branch 'stable-3.1'
2 parents d9fcae9 + 4b6c4d6 commit 5e6c798

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

install/sql/incremental/upd_dev_collection.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,3 +214,5 @@ ALTER TABLE `dns_soa`
214214

215215
ALTER TABLE `client` ADD COLUMN `limit_ssl_letsencrypt` enum('n','y') NOT NULL DEFAULT 'n' AFTER `limit_ssl`;
216216
ALTER TABLE `client_template` ADD COLUMN `limit_ssl_letsencrypt` enum('n','y') NOT NULL DEFAULT 'n' AFTER `limit_ssl`;
217+
ALTER TABLE `client` ADD COLUMN `limit_directive_snippets` ENUM( 'n', 'y' ) NOT NULL DEFAULT 'n' AFTER `limit_backup`;
218+
ALTER TABLE `client_template` ADD COLUMN `limit_directive_snippets` ENUM( 'n', 'y' ) NOT NULL DEFAULT 'n' AFTER `limit_backup`;

install/sql/ispconfig3.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,7 @@ CREATE TABLE `client` (
219219
`ssh_chroot` varchar(255) NOT NULL DEFAULT 'no,jailkit,ssh-chroot',
220220
`limit_webdav_user` int(11) NOT NULL DEFAULT '0',
221221
`limit_backup` ENUM( 'n', 'y' ) NOT NULL DEFAULT 'y',
222+
`limit_directive_snippets` ENUM( 'n', 'y' ) NOT NULL DEFAULT 'n',
222223
`limit_aps` int(11) NOT NULL DEFAULT '-1',
223224
`default_dnsserver` int(11) unsigned NOT NULL DEFAULT '1',
224225
`db_servers` blob,
@@ -344,6 +345,7 @@ CREATE TABLE `client_template` (
344345
`ssh_chroot` varchar(255) NOT NULL DEFAULT 'no',
345346
`limit_webdav_user` int(11) NOT NULL default '0',
346347
`limit_backup` ENUM( 'n', 'y' ) NOT NULL DEFAULT 'y',
348+
`limit_directive_snippets` ENUM( 'n', 'y' ) NOT NULL DEFAULT 'n',
347349
`limit_aps` int(11) NOT NULL DEFAULT '-1',
348350
`limit_dns_zone` int(11) NOT NULL default '-1',
349351
`limit_dns_slave_zone` int(11) NOT NULL default '-1',

0 commit comments

Comments
 (0)