mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 16:36:00 +00:00
fix
This commit is contained in:
@@ -646,7 +646,7 @@ export function testEqualTables(
|
||||
}
|
||||
|
||||
export function testEqualSqlObjects(a: SqlObjectInfo, b: SqlObjectInfo, opts: DbDiffOptions) {
|
||||
return a.createSql?.trim() == b.createSql?.trim();
|
||||
return a.createSql?.trim()?.toLowerCase() == b.createSql?.trim()?.toLowerCase();
|
||||
}
|
||||
|
||||
export function createAlterTablePlan(
|
||||
|
||||
Reference in New Issue
Block a user