Indexes seem to [support only hash and btree](https://github.com/Vanderhoof/PyDBML/blob/master/pydbml/parser/blueprints.py#L169) But just to name Postgresql, [there are many other index types](https://www.postgresql.org/docs/current/indexes-types.html): * [gist](https://www.postgresql.org/docs/current/indexes-types.html#INDEXES-TYPE-GIST) * [sp-gitst](https://www.postgresql.org/docs/current/indexes-types.html#INDEXES-TYPE-SPGIST) * [gin](https://www.postgresql.org/docs/current/indexes-types.html#INDEXES-TYPES-GIN) * [brin](https://www.postgresql.org/docs/current/indexes-types.html#INDEXES-TYPES-BRIN) @Vanderhoof We can either add those values in the enum or maybe allow any kind of value, do you have an opinion on the subject?
Indexes seem to support only hash and btree
But just to name Postgresql, there are many other index types:
@Vanderhoof We can either add those values in the enum or maybe allow any kind of value, do you have an opinion on the subject?