From 91331f8dec3851bffe4fa115dd40fe658f5f1029 Mon Sep 17 00:00:00 2001 From: Andrew Farries Date: Mon, 23 Dec 2024 09:40:48 +0000 Subject: [PATCH] Update docs for create index operation Add the missing `storage_parameters` field to the create index operation. --- docs/operations/create_index.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/operations/create_index.mdx b/docs/operations/create_index.mdx index 888bd6fc..185284d6 100644 --- a/docs/operations/create_index.mdx +++ b/docs/operations/create_index.mdx @@ -12,6 +12,7 @@ description: A create index operation creates a new index on a set of columns. "name": "index name", "columns": [ "names of columns on which to define the index" ] "predicate": "conditional expression for defining a partial index", + "storage_parameters": "comma-separated list of storage parameters", "unique": true | false, "method": "btree" }