The SQL log driver has been dropped.
authorJan Schneider <jan@horde.org>
Fri, 28 Jan 2011 16:23:37 +0000 (17:23 +0100)
committerJan Schneider <jan@horde.org>
Fri, 28 Jan 2011 18:07:05 +0000 (19:07 +0100)
horde/docs/CHANGES
horde/scripts/sql/horde_log.mssql.sql [deleted file]
horde/scripts/sql/horde_log.sql [deleted file]

index 0afad6d..92ab69d 100644 (file)
@@ -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 (file)
index 408d51b..0000000
+++ /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 (file)
index 628bf55..0000000
+++ /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)
-);