Removing unique key in cdrs_extra since it only slows down INSERTs

This commit is contained in:
DanB
2014-07-16 11:50:43 +02:00
parent 3c4a247052
commit 62d1a31290

View File

@@ -34,8 +34,7 @@ CREATE TABLE cdrs_extra (
tbid int(11) NOT NULL AUTO_INCREMENT,
cgrid char(40) NOT NULL,
extra_fields text NOT NULL,
PRIMARY KEY (tbid),
UNIQUE KEY cgrid (cgrid)
PRIMARY KEY (tbid)
);
--