kysely
kysely copied to clipboard
`INCLUDE` clause in Postgres `createIndex`
Postgres has support for INCLUDE clauses in CREATE INDEX, can this be written in Kysely as well?
CREATE INDEX index_name
ON table_name(key_column_list)
INCLUDE(included_column_list)