mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-05-01 13:13:58 +00:00
fix
This commit is contained in:
@@ -646,7 +646,7 @@ export function testEqualTables(
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function testEqualSqlObjects(a: SqlObjectInfo, b: SqlObjectInfo, opts: DbDiffOptions) {
|
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(
|
export function createAlterTablePlan(
|
||||||
|
|||||||
Reference in New Issue
Block a user