Max Ulianov
Max Ulianov
Can you provide more info please.
You should extend default nodal PostgreSQL adapter. As an example, you can look at https://github.com/keithwhor/nodal/pull/314.
You should call ```createIndex(table, columnName, indexType)``` method as many times as how many indexes you need to create. For example, ``` this.createIndex('table', 'col1'); this.createIndex('table', 'col2'); this.createIndex('table', 'col3'); ``` The last...
Guys, any updates here?