Fixed an issue where changes to foreign key constraints were not detected in the schema diff. #8627
parent
7d8a915ee0
commit
7b1ad5fa67
|
|
@ -21,6 +21,7 @@ New features
|
|||
************
|
||||
|
||||
| `Issue #2767 <https://github.com/pgadmin-org/pgadmin4/issues/2767>`_ - Added ability to use SQL in the "DB Restriction" field.
|
||||
| `Issue #7310 <https://github.com/pgadmin-org/pgadmin4/issues/7310>`_ - Add support for custom roles and role permissions management in pgAdmin.
|
||||
| `Issue #8629 <https://github.com/pgadmin-org/pgadmin4/issues/8629>`_ - Added support for font ligatures.
|
||||
|
||||
Housekeeping
|
||||
|
|
@ -36,6 +37,7 @@ Bug fixes
|
|||
| `Issue #8556 <https://github.com/pgadmin-org/pgadmin4/issues/8556>`_ - Ensure that graph data is updated even when the Dashboard tab is inactive.
|
||||
| `Issue #8572 <https://github.com/pgadmin-org/pgadmin4/issues/8572>`_ - Fixed an issue where Ctrl/Cmd+A in cell editor would select all rows.
|
||||
| `Issue #8613 <https://github.com/pgadmin-org/pgadmin4/issues/8613>`_ - Fixed an issue where drag and drop function with no parameters does not work.
|
||||
| `Issue #8627 <https://github.com/pgadmin-org/pgadmin4/issues/8627>`_ - Fixed an issue where changes to foreign key constraints were not detected in the schema diff.
|
||||
| `Issue #8628 <https://github.com/pgadmin-org/pgadmin4/issues/8628>`_ - Change the shortcut for canceling a running query as it conflicts with the shortcut to open a new query tool.
|
||||
| `Issue #8630 <https://github.com/pgadmin-org/pgadmin4/issues/8630>`_ - Fixed an issue where filtering on a view caused an error.
|
||||
| `Issue #8632 <https://github.com/pgadmin-org/pgadmin4/issues/8632>`_ - Fixed an issue where the query tool went blank when converting history dates to the appropriate locale format.
|
||||
|
|
|
|||
|
|
@ -228,7 +228,7 @@ class SchemaDiffTableCompare(SchemaDiffObjectCompare):
|
|||
'foreign_key': ['condeferrable', 'condeferred',
|
||||
'confupdtype', 'confdeltype',
|
||||
'confmatchtype', 'convalidated',
|
||||
'conislocal']
|
||||
'conislocal', 'refnsp', 'reftab']
|
||||
}
|
||||
|
||||
for constraint in ['primary_key', 'unique_constraint',
|
||||
|
|
|
|||
Loading…
Reference in New Issue