Skip to content

Releases: thecodingmachine/schema-analyzer

v2.0.0-beta.2

01 Feb 11:56
Compare
Choose a tag to compare
v2.0.0-beta.2 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v1.1.5...v2.0.0-beta.2

Update to DBAL 3

12 Jan 10:55
bb3e99e
Compare
Choose a tag to compare
Merge pull request #12 from moufmouf/bugfix/quotedcolumns

Fixing bug in quoted columns (on Oracle)

v1.1.5

01 Aug 21:26
bb3e99e
Compare
Choose a tag to compare

Bugfix:

  • #12 Fixing a bug when using foreign keys on quoted columns (common in Oracle) (@moufmouf )

Adding support for @Autoincrement annotation

04 Sep 15:39
Compare
Choose a tag to compare

Useful for databases that do not support the auto-increment feature natively like Oracle.

Bugfix release

26 Jun 12:24
Compare
Choose a tag to compare

Minor improvement

05 Jun 14:28
Compare
Choose a tag to compare

Making isJunctionTable method public.

Bugfix release

31 May 16:00
Compare
Choose a tag to compare

Fixes problems with duplicate foreign keys in some schema.
See #7

Better exception messages

25 Mar 15:41
Compare
Choose a tag to compare

Improves exception messages when a path between 2 table is not found because one of the tables does not exists.

Tagging first stable release

04 Mar 16:49
Compare
Choose a tag to compare
Merge pull request #5 from moufmouf/1.0

Adding a parameter to ignore junction tables pointed by foreign keys

Adds inheritance detection

14 Oct 10:08
Compare
Choose a tag to compare

Inheritance between tables (via primary keys that are also foreign keys) can now be detected.
Also, inheritance relationships has a very low cost when computing shortest path.