Remove after resolving conflict.
authorJan Schneider <jan@horde.org>
Wed, 26 Jan 2011 21:14:23 +0000 (22:14 +0100)
committerJan Schneider <jan@horde.org>
Wed, 26 Jan 2011 21:14:23 +0000 (22:14 +0100)
horde/scripts/sql/horde_histories.mysql.sql [deleted file]

diff --git a/horde/scripts/sql/horde_histories.mysql.sql b/horde/scripts/sql/horde_histories.mysql.sql
deleted file mode 100644 (file)
index 8f279ad..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-CREATE TABLE horde_histories (
-    history_id       INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
-    object_uid       VARCHAR(255) NOT NULL,
-    history_action   VARCHAR(32) NOT NULL,
-    history_ts       BIGINT NOT NULL,
-    history_desc     TEXT,
-    history_who      VARCHAR(255),
-    history_extra    TEXT
-);
-
-CREATE INDEX history_action_idx ON horde_histories (history_action);
-CREATE INDEX history_ts_idx ON horde_histories (history_ts);
-CREATE INDEX history_uid_idx ON horde_histories (object_uid);