Is there a straightforward way (rake task?) to convert the generated
ruby schema file into SQL? I want to do some visualization with MySQL
Workbench, but the free version can't reverse engineer a live db - it
needs a schema file in SQL. Any alternative suggestions or approaches
are also welcome.
Is there a straightforward way (rake task?) to convert the generated
ruby schema file into SQL? I want to do some visualization with MySQL
Workbench, but the free version can't reverse engineer a live db - it
needs a schema file in SQL. Any alternative suggestions or approaches
are also welcome.
rake db:structure:dump # Dump the database structure to a SQL
file