Skip to content

Commit ad3fe59

Browse files
author
A. Täffner
committed
added sql changes
1 parent ea97ae1 commit ad3fe59

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

install/sql/incremental/upd_dev_collection.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,3 +203,6 @@ CREATE TABLE `ftp_traffic` (
203203

204204
ALTER TABLE `mail_forwarding` ADD COLUMN `allow_send_as` ENUM('n','y') NOT NULL DEFAULT 'n' AFTER `active`;
205205
UPDATE `mail_forwarding` SET `allow_send_as` = 'y' WHERE `type` = 'alias';
206+
207+
ALTER TABLE `dns_soa` ADD COLUMN `status` enum('OK','ERROR','PENDING') NOT NULL DEFAULT 'OK' AFTER `active`;
208+
ALTER TABLE `dns_soa` ADD COLUMN `status_txt` text AFTER `status`;

install/sql/ispconfig3.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -536,6 +536,8 @@ CREATE TABLE `dns_soa` (
536536
`minimum` int(11) unsigned NOT NULL default '3600',
537537
`ttl` int(11) unsigned NOT NULL default '3600',
538538
`active` enum('N','Y') NOT NULL DEFAULT 'N',
539+
`status` enum('OK','ERROR','PENDING') NOT NULL DEFAULT 'OK',
540+
`status_txt` text,
539541
`xfer` varchar(255) NOT NULL DEFAULT '',
540542
`also_notify` varchar(255) default NULL,
541543
`update_acl` varchar(255) default NULL,

0 commit comments

Comments
 (0)