mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed a schema diff issue where difference SQL isn't generated when foreign key values for a table differ. Fixes #7220
This commit is contained in:
@@ -199,7 +199,10 @@ class SchemaDiffTableCompare(SchemaDiffObjectCompare):
|
||||
'exclude_constraint': ['amname',
|
||||
'indconstraint',
|
||||
'columns'],
|
||||
'foreign_key': []
|
||||
'foreign_key': ['condeferrable', 'condeferred',
|
||||
'confupdtype', 'confdeltype',
|
||||
'confmatchtype', 'convalidated',
|
||||
'conislocal']
|
||||
}
|
||||
|
||||
for constraint in ['primary_key', 'unique_constraint',
|
||||
|
||||
Reference in New Issue
Block a user