I am looking for a way to convert an XML schema definition file to an ActiveRecord modeling database. Does anyone know a tool that does this?
So far, the best way is to find the XSD load in RDBMS, such as postgres or mysql, and then connect the rails to do rake db: schema: dump. This, however, leaves me only with a database without rails. Models.
What is the best way to import / load this xsd based database in rails?
source
share