export const Config = S.struct({
/**
* Use the `indexes` property to define SQLite indexes.
*
* Table and column names are not typed because Kysely doesn't support it.
*
* https://medium.com/@JasonWyatt/squeezing-performance-from-sqlite-indexes-indexes-c4e175f3c346
*
* @example
* const indexes = [
* createIndex("indexTodoCreatedAt").on("todo").column("createdAt"),
*
* createIndex("indexTodoCategoryCreatedAt")
* .on("todoCategory")
* .column("createdAt"),
* ];
*/
indexes: S.array(Index),
export const Config = S.struct({
/**
* Use the `indexes` property to define SQLite indexes.
*
* Table and column names are not typed because Kysely doesn't support it.
*
* https://medium.com/@JasonWyatt/squeezing-performance-from-sqlite-indexes-indexes-c4e175f3c346
*
* @example
* const indexes = [
* createIndex("indexTodoCreatedAt").on("todo").column("createdAt"),
*
* createIndex("indexTodoCategoryCreatedAt")
* .on("todoCategory")
* .column("createdAt"),
* ];
*/
indexes: S.array(Index),