diff --git a/integration-tests/__tests__/deploy-database.spec.js b/integration-tests/__tests__/deploy-database.spec.js index f6b5291ee..56edc855c 100644 --- a/integration-tests/__tests__/deploy-database.spec.js +++ b/integration-tests/__tests__/deploy-database.spec.js @@ -79,6 +79,7 @@ async function testDatabaseDeploy(engine, conn, driver, dbModelsYaml, options) { deletedSqlObjectPrefix: '_deleted_', } : {}; + dbdiffOptionsExtra.schemaMode = 'ignore'; for (const loadedDbModel of dbModelsYaml) { const { sql, isEmpty } = await generateDeploySql({ diff --git a/integration-tests/engines.js b/integration-tests/engines.js index 77acf4629..eb14d8c4e 100644 --- a/integration-tests/engines.js +++ b/integration-tests/engines.js @@ -186,9 +186,9 @@ const engines = [ const filterLocal = [ // filter local testing - 'MySQL', + '-MySQL', '-MariaDB', - '-PostgreSQL', + 'PostgreSQL', '-SQL Server', '-SQLite', '-CockroachDB',