You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed a small bug: If there are two indexes on a foreign key, the relation is duplicated even though there is only one foreign key column. Here a minimal example to reproduce the issue:
For the following table definition
createtablefoo
(
id serialprimary key
);
createtablebar
(
id serialprimary key,
foo_id intreferences foo,
name int
);
createindexon bar (foo_id);
createunique indexon bar (name, foo_id);
Many thanks for this super handy project!
I noticed a small bug: If there are two indexes on a foreign key, the relation is duplicated even though there is only one foreign key column. Here a minimal example to reproduce the issue:
For the following table definition
planter creates the following output
whereas the correct output would be
The text was updated successfully, but these errors were encountered: