Skip to content

Commit b9d4a73

Browse files
author
Marius Burkard
committed
re-formatted
1 parent 7799762 commit b9d4a73

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

install/sql/incremental/upd_dev_collection.sql

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -193,15 +193,5 @@ ALTER TABLE `web_domain` ADD `ssl_letsencrypt` enum('n','y') NOT NULL DEFAULT 'n
193193
ALTER TABLE `openvz_template` CHANGE `vmguarpages` `vmguarpages` varchar(255) DEFAULT '65536:unlimited';
194194
ALTER TABLE `openvz_template` CHANGE `privvmpages` `privvmpages` varchar(255) DEFAULT '131072:139264';
195195

196-
197-
198-
199-
-- Mail Security: Send As Permission by dark alex
200-
-- MS: alter table
201-
ALTER TABLE `mail_forwarding`
202-
ADD COLUMN `allow_send_as` ENUM('n','y') NOT NULL DEFAULT 'n' AFTER `active`;
203-
-- MS: apply defaults
204-
update mail_forwarding set allow_send_as='y' WHERE type = 'alias';
205-
206-
207-
196+
ALTER TABLE `mail_forwarding` ADD COLUMN `allow_send_as` ENUM('n','y') NOT NULL DEFAULT 'n' AFTER `active`;
197+
UPDATE `mail_forwarding` SET `allow_send_as` = 'y' WHERE `type` = 'alias';

0 commit comments

Comments
 (0)