Is there a good tool to generate an image of the database schema used in a Rails app?
|
1
|
|
|
|
|
|
I have been using RailRoad to generate diagrams of my applications. There are diagrams for both Models and Controllers. http://railroad.rubyforge.org/ This is the introduction from the website: RailRoad is a class diagrams generator for Ruby on Rails applications. It's a Ruby script that loads the application classes and analyzes its properties (attributes, methods) and relationships (inheritance, model associations like has_many, etc.) The output is a graph description in the DOT language, suitable to be handled with tools like Graphviz. RailRoad can produce:
|
||
|
|
|
|
Have you tried Essentially, make sure that your Note that you should rename |
||
|
|
|
|
If by "image" you mean a graphical representation of your tables and their relationships, then the answer relates not so much to Rails (unless you examined the models for the declared associations) but to the database generally. Question 30474 addressed that - see if any of the suggestions help, although without foreign key constraints defined in the database there may be a fair amount of manual work to do... |
||
|
|
|
|
Railroad - http://railroad.rubyforge.org/ |
||
|
|
