Teams DB: Fix column for format_idx (#10632)
Some checks are pending
Node.js CI / build (16.x) (push) Waiting to run

This commit is contained in:
larry-the-table-guy 2024-11-03 01:21:14 -05:00 committed by GitHub
parent 9f29c90db2
commit 4046533194
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,5 +10,5 @@ CREATE TABLE teams (
);
CREATE INDEX owner_idx ON teams(ownerid);
CREATE INDEX format_idx ON teams(ownerid);
CREATE INDEX format_idx ON teams(format);
CREATE INDEX owner_fmt_idx ON teams(ownerid, format);