From: Jan Schneider Date: Fri, 28 Jan 2011 16:23:37 +0000 (+0100) Subject: The SQL log driver has been dropped. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=1e5c759c3c09835ad17d614b51f3a17cd47bc955;p=horde.git The SQL log driver has been dropped. --- 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) -);