Skip to content

Commit ccc050e

Browse files
authored
Merge pull request #7336 from chaen/v8.0_feat_tsIndex
[v8.0] New indices on TransformationDB.Transformations
2 parents 70538bb + e4fad0e commit ccc050e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/DIRAC/TransformationSystem/DB/TransformationDB.sql

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ CREATE TABLE Transformations(
4444
EventsPerTask INTEGER NOT NULL DEFAULT 0,
4545
PRIMARY KEY(TransformationID),
4646
INDEX(TransformationName),
47-
INDEX(TransformationFamily)
47+
INDEX(TransformationFamily),
48+
INDEX(Status),
49+
INDEX(Type)
4850
) ENGINE = InnoDB DEFAULT CHARSET = utf8;
4951

5052
-- -------------------------------------------------------------------------------

0 commit comments

Comments
 (0)