Rails Schema Design Software?
I am presently designing a database schema for use in a Rails 3.1 application.
At the moment, I am using MySQL Workbench to design the schema visually, and then manually translating this to Rails migrations & models.
Can anyone indicate if there are any solutions that will allow a schema to be designed visually and translated automatically (i.e. via script) to Rails?
Thanks!
Solution 1:
First off, the "database-first" approach definitely isn't really the preferred way to work with Rails... but if you really want to...
If you generate the the tables from your schema you can configure the Rails app's config/database.yml
file to connect to your database, then call rake db:schema:dump
which generates the db/schema.rb
file from the database. Then you can create a migration and copy the code from db/schema.rb
into the change
(or self.up
) method.
Note that this does not automatically create model classes - you'll have to create these yourself, remembering to --skip migration
in the rails generate model
, and possibly needing to make liberal use of the set_table_name
(to map the model class to the right table name), alias_attribute
(to map model attributes to the right columns), and perhaps set_primary_key
.
There were some more complete approaches to this sort of thing for older versions of Rails (Magic Model Generator and reverse_scaffold are two that I've found), but I don't know of any that have been upgraded to work with Rails 3.
Solution 2:
SQL Editor is a Mac application that allows you to visually design a DB schema and then export it as something you can easily import as a schema in Rails.
You will still have to create the models yourself.