This commit is contained in:
Alexandre Bodin 2023-10-04 13:55:48 +02:00
parent 4f44013229
commit c29b11186e
3 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,8 @@ export default class Dialect {
return true;
}
supportsOperator(operator?: string): boolean {
supportsOperator(operator?: string): boolean;
supportsOperator(): boolean {
return true;
}

View File

@ -1,5 +1,5 @@
import type { Database } from '../..';
import type { Schema, Column, Index, IndexType, ForeignKey } from '../../schema/types';
import type { Schema, Column, Index, ForeignKey } from '../../schema/types';
import type { SchemaInspector } from '../dialect';
const SQL_QUERIES = {

View File

@ -1,4 +1,3 @@
import type { Knex } from 'knex';
import {
castArray,
compact,