INFRA-2911 | Removing index query on primary key (gets auto created) (#374)

This commit is contained in:
Shashank Shekhar
2024-02-19 19:18:01 +05:30
committed by GitHub
parent aa8161ca8b
commit 4ddbde07b5

View File

@@ -10,6 +10,5 @@ CREATE TABLE product
-- Indices -------------------------------------------------------
CREATE UNIQUE INDEX product_pkey ON product (id int8_ops);
CREATE UNIQUE INDEX product_name_key ON product (name text_ops);
CREATE INDEX idx_product_name ON product (name text_ops);