Schema from pre-existing database

Are there mix tools to import a schema from a pre-existing database? OORM’s in Java such as JOOQ or DynSQL generally have generators for this. I would like to define my schema within NaviCat not a text editor.

The only tutorial I could find on the topic, well he did it by hand.

2 Likes

There is a command in Ecto 2.0 called mix ecto.load and mix ecto.dump that allow you to load and dump a database schema.

9 Likes