rmre icon indicating copy to clipboard operation
rmre copied to clipboard

Rails 3 models reverse engineering

Results 9 rmre issues
Sort by recently updated
recently updated
newest added

Currently it appears that the associations are created based on the foreign keys. It would be nice if it could do it also based on column name. Quick & Dirty...

If a `table_name_prefix`has been setup it should not appear in the model name. Currently if there is a prefix setup like `pr_` it will appear in the generated file name...

The generated models do not support composite primary keys. Not sure if bug report or feature request really. I got around it by using this gem: https://github.com/composite-primary-keys/composite_primary_keys and manually editing...

There is a need for RMRE to be able to create tables and models that reside in multiple schemas (eg postgres) or multiple databases (eg Sybase). The underlying database allows...

RMRE is generating invalid models for postgresql when there are tables with the same names in multiple schemas that have foreign keys from one schema to another. The specifics are...

When I run the command on my debian: rmre --adapter oracle_enhanced --host ip --database name --user user --pass pass --out app/models output is the following: undefined method `arel_attributes_values` for class...

When table is created and columns are added ActiveRecord automatically adds primary column to the table. This makes problems on legacy databases where, for example, primary column name is OID...

If -f switch is given create separate directory for models and save load files in output directory.

Setting primary key column is not properly handled if column name is different from 'id'.