Skip to content
Snippets Groups Projects
Commit 9b4f7e9d authored by Vermaat's avatar Vermaat
Browse files

New index on BatchQueue table.

parent 74a888b4
No related branches found
No related tags found
No related merge requests found
...@@ -291,7 +291,8 @@ CREATE TABLE BatchQueue ( ...@@ -291,7 +291,8 @@ CREATE TABLE BatchQueue (
JobID char(20) NOT NULL, JobID char(20) NOT NULL,
Input char(255) NOT NULL, Input char(255) NOT NULL,
Flags char(20) DEFAULT NULL, Flags char(20) DEFAULT NULL,
PRIMARY KEY (QueueID) PRIMARY KEY (QueueID),
KEY JobQueue (JobID,QueueID)
); );
CREATE TABLE GBInfo ( CREATE TABLE GBInfo (
AccNo char(20) NOT NULL DEFAULT '', AccNo char(20) NOT NULL DEFAULT '',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment