Author: justi9
Date: 2008-02-21 13:52:49 -0500 (Thu, 21 Feb 2008)
New Revision: 1718
Modified:
mgmt/mint/sql/schema.sql
Log:
Take the extra index statements out of schema.sql as they are loaded separately now
Modified: mgmt/mint/sql/schema.sql
===================================================================
--- mgmt/mint/sql/schema.sql 2008-02-21 18:34:13 UTC (rev 1717)
+++ mgmt/mint/sql/schema.sql 2008-02-21 18:52:49 UTC (rev 1718)
@@ -457,11 +457,3 @@
ALTER TABLE vhost ADD CONSTRAINT broker_id_exists FOREIGN KEY (broker_id) REFERENCES
broker (id) ON DELETE SET NULL;
ALTER TABLE vhost_stats ADD CONSTRAINT vhost_id_exists FOREIGN KEY (vhost_id) REFERENCES
vhost (id) ON DELETE SET NULL;
-
-create index queue_vhost_id_idx on queue (vhost_id);
-create index exchange_vhost_id_idx on exchange (vhost_id);
-create index client_vhost_id_idx on client (vhost_id);
-
-create index queue_stats_queue_id_idx on queue_stats (queue_id);
-create index exchange_stats_exchange_id_idx on exchange_stats (exchange_id);
-create index client_stats_client_id_idx on client_stats (client_id);
Show replies by date