X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=sql%2Fcore_notify_blacklist.sql;fp=sql%2Fcore_notify_blacklist.sql;h=3c0e001a8e613fbc38727362ddc39e76e77ea431;hb=d32f011a573593a5b71f5be13eba389c23fa7598;hp=0000000000000000000000000000000000000000;hpb=b9346fd1c04fcb12a1ec03e5fe6ebbcf961ad5e2;p=Pman.Core diff --git a/sql/core_notify_blacklist.sql b/sql/core_notify_blacklist.sql new file mode 100644 index 00000000..3c0e001a --- /dev/null +++ b/sql/core_notify_blacklist.sql @@ -0,0 +1,11 @@ +CREATE TABLE core_notify_blacklist ( + id INT(11) NOT NULL AUTO_INCREMENT , + server_id INT(11) NOT NULL DEFAULT 0, + domain_id INT(11) NOT NULL DEFAULT 0, + added DATETIME NOT NULL DEFAULT '1000-01-01 00:00:00', + error_str TEXT NOT NULL DEFAULT '', + + PRIMARY KEY (id) +) ENGINE=InnoDB;; + +ALTER TABLE core_notify_blacklist ADD INDEX lookup (server_id,domain_id);