when trying to use knex.schema.enableExtendion('vector') I get error "Property 'enableExtension' does not exist on type 'SchemaBuilder'."
looking at the knex node module looks like 'enableExtension' is not there?
/node_modules/knex/lib/schema/builder.js
// Each of the schema builder methods just add to the
// "_sequence" array for consistency.
[
'createTable',
'createTableIfNotExists',
'createTableLike',
'createView',
'createViewOrReplace',
'createMaterializedView',
'refreshMaterializedView',
'dropView',
'dropViewIfExists',
'dropMaterializedView',
'dropMaterializedViewIfExists',
'createSchema',
'createSchemaIfNotExists',
'dropSchema',
'dropSchemaIfExists',
'createExtension',
'createExtensionIfNotExists',
'dropExtension',
'dropExtensionIfExists',
'table',
'alterTable',
'view',
'alterView',
'hasTable',
'hasColumn',
'dropTable',
'renameTable',
'renameView',
'dropTableIfExists',
'raw',
]
when trying to use knex.schema.enableExtendion('vector') I get error "Property 'enableExtension' does not exist on type 'SchemaBuilder'."
looking at the knex node module looks like 'enableExtension' is not there?
/node_modules/knex/lib/schema/builder.js
// Each of the schema builder methods just add to the
// "_sequence" array for consistency.
[
'createTable',
'createTableIfNotExists',
'createTableLike',
'createView',
'createViewOrReplace',
'createMaterializedView',
'refreshMaterializedView',
'dropView',
'dropViewIfExists',
'dropMaterializedView',
'dropMaterializedViewIfExists',
'createSchema',
'createSchemaIfNotExists',
'dropSchema',
'dropSchemaIfExists',
'createExtension',
'createExtensionIfNotExists',
'dropExtension',
'dropExtensionIfExists',
'table',
'alterTable',
'view',
'alterView',
'hasTable',
'hasColumn',
'dropTable',
'renameTable',
'renameView',
'dropTableIfExists',
'raw',
]