/models-to-sql-rails-plugin

Plugin to convert rails models into proper SQL, with all the associations getting dumped also. Using this you can for example fetch object graphs from production system DB and move them to your local development setup.

Primary LanguageRuby

This plugin allows you to dump ActiveRecord models graphs back into SQL or Rails fixtures format.

After installation, each AR model has to_sql method that can take following options:

  :ignore_associations_for - do not dump associations with specified models. (default: empty)
  :ignore_models - do not dump specified models. Array of ruby Class objects is used. (default: empty)
  :ignore_tables - do not dump specified tables (default: empty)
  :debug - debugging mode (default: false)
  :add_deletes - generate SQL to delete records with the same ID from DB before generating insert statement (default: false)

Changelog
-----------------
10/08/2011 - gsusmonzon . changed 'harvest' method to work on Rails 3