Skip to content

Commit a848877

Browse files
author
A. Täffner
committed
added sql changes
1 parent 86a7f8c commit a848877

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

install/sql/incremental/upd_dev_collection.sql

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,4 +249,6 @@ UPDATE `sys_session` SET `last_updated` = NULL WHERE `last_updated` = '0000-00-0
249249
UPDATE `web_domain` SET `added_date` = NULL WHERE `added_date` = '0000-00-00';
250250
UPDATE `web_traffic` SET `traffic_date` = NULL WHERE `traffic_date` = '0000-00-00';
251251

252-
252+
-- DNS-Status (2 lines)
253+
ALTER TABLE `dns_soa` ADD COLUMN `status` enum('OK','ERROR','PENDING') NOT NULL DEFAULT 'OK' AFTER `active`;
254+
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
@@ -542,6 +542,8 @@ CREATE TABLE `dns_soa` (
542542
`minimum` int(11) unsigned NOT NULL default '3600',
543543
`ttl` int(11) unsigned NOT NULL default '3600',
544544
`active` enum('N','Y') NOT NULL DEFAULT 'N',
545+
`status` enum('OK','ERROR','PENDING') NOT NULL DEFAULT 'OK',
546+
`status_txt` text,
545547
`xfer` varchar(255) NOT NULL DEFAULT '',
546548
`also_notify` varchar(255) default NULL,
547549
`update_acl` varchar(255) default NULL,

0 commit comments

Comments
 (0)