From 1e5c759c3c09835ad17d614b51f3a17cd47bc955 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Fri, 28 Jan 2011 17:23:37 +0100 Subject: [PATCH] The SQL log driver has been dropped. --- horde/docs/CHANGES | 1 + horde/scripts/sql/horde_log.mssql.sql | 10 ---------- horde/scripts/sql/horde_log.sql | 10 ---------- 3 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 horde/scripts/sql/horde_log.mssql.sql delete mode 100644 horde/scripts/sql/horde_log.sql diff --git a/horde/docs/CHANGES b/horde/docs/CHANGES index 0afad6dee..92ab69d0b 100644 --- a/horde/docs/CHANGES +++ b/horde/docs/CHANGES @@ -3,6 +3,7 @@ v4.0-cvs -------- [jan] Add a new Share SQL driver with better performance. +[cjh] Drop Log SQL driver. [mms] Update prototypejs to v1.7. [mms] Add theme caching. [mms] Add hook to allow browser capabilities to be modified. diff --git a/horde/scripts/sql/horde_log.mssql.sql b/horde/scripts/sql/horde_log.mssql.sql deleted file mode 100644 index 408d51bc6..000000000 --- a/horde/scripts/sql/horde_log.mssql.sql +++ /dev/null @@ -1,10 +0,0 @@ -CREATE TABLE horde_log ( - id INT NOT NULL, - logtime TIMESTAMP NOT NULL, - ident CHAR(16) NOT NULL, - priority INT NOT NULL, - -- For DBs that don't support the VARCHAR(MAX) field type: - -- message VARCHAR(2048), - message VARCHAR(MAX), - PRIMARY KEY (id) -); diff --git a/horde/scripts/sql/horde_log.sql b/horde/scripts/sql/horde_log.sql deleted file mode 100644 index 628bf551a..000000000 --- a/horde/scripts/sql/horde_log.sql +++ /dev/null @@ -1,10 +0,0 @@ -CREATE TABLE horde_log ( - id INT NOT NULL, - logtime TIMESTAMP NOT NULL, - ident CHAR(16) NOT NULL, - priority INT NOT NULL, - -- For DBs that don't support the TEXT field type: - -- message VARCHAR(2048), - message TEXT, - PRIMARY KEY (id) -); -- 2.11.0