fix: update duckdb dialects

This commit is contained in:
Nybkox
2025-04-08 18:07:22 +02:00
parent caefc438b9
commit ca18994092

View File

@@ -36,10 +36,13 @@ const dialect = {
dropIndex: true, dropIndex: true,
createForeignKey: false, createForeignKey: false,
enableForeignKeyChecks: false, enableForeignKeyChecks: false,
dropForeignKey: false, dropCheck: true,
dropUnique: true,
dropForeignKey: true,
createPrimaryKey: false, createPrimaryKey: false,
dropPrimaryKey: false, dropPrimaryKey: true,
dropReferencesWhenDropTable: false, dropReferencesWhenDropTable: true,
dropIndexContainsTableSpec: true,
filteredIndexes: true, filteredIndexes: true,
anonymousForeignKey: true, anonymousForeignKey: true,
}; };