fix: remove schema from firebird

This commit is contained in:
Pavel
2025-05-15 13:22:01 +02:00
parent 3e0f834796
commit 06055a7c4c
10 changed files with 16 additions and 29 deletions

View File

@@ -5,13 +5,15 @@ const Dumper = require('./Dumper');
const dialect = {
rangeSelect: true,
ilike: true,
defaultSchemaName: 'public',
multipleSchema: true,
multipleSchema: false,
stringEscapeChar: "'",
fallbackDataType: 'varchar',
anonymousPrimaryKey: false,
enableConstraintsPerTable: true,
stringAgg: true,
quoteIdentifier(s) {
return `"${s}"`;
},
createColumn: true,
dropColumn: true,