import models tests fixed

This commit is contained in:
Jan Prochazka
2025-02-25 13:58:03 +01:00
parent ec02743f83
commit a4d3189dac
9 changed files with 60 additions and 14 deletions

View File

@@ -13,8 +13,10 @@ export interface SqlDialect {
fallbackDataType?: string;
explicitDropConstraint?: boolean;
anonymousPrimaryKey?: boolean;
anonymousForeignKey?: boolean;
defaultSchemaName?: string;
enableConstraintsPerTable?: boolean;
enableAllForeignKeys?: boolean;
requireStandaloneSelectForScopeIdentity?: boolean;
allowMultipleValuesInsert?: boolean;

View File

@@ -39,6 +39,7 @@ export type TestEngineInfo = {
skipNonPkRename?: boolean;
skipPkDrop?: boolean;
skipOrderBy?: boolean;
skipImportModel?: boolean;
forceSortResults?: boolean;
forceSortStructureColumns?: boolean;