[server] Remove irrelevant index in migration

This commit is contained in:
Abhishek Shroff
2025-05-05 20:09:18 +05:30
parent e176aafd9c
commit 545dce7f60

View File

@@ -10,12 +10,8 @@ CREATE TABLE publinks(
CREATE INDEX publinks_by_root ON publinks(root);
CREATE INDEX publinks_by_creator ON publinks(created_by);
---- create above / drop below ----
DROP INDEX IF EXISTS publinks_by_creator;
DROP INDEX IF EXISTS publinks_by_root;
DROP TABLE publinks;