Displaying 1 result from an estimated 1 matches for "custom_scaffold".
2009 May 06
1
accessing database model from generator?
i''m writing my own generator :) basically a custom scaffolding type
thing to make my life easier when creating new resources.
instead of doing something like script/generate custom_scaffold
MyResource name:string description:string ... i decided to store all
the metadata about the tables and fields in the db.
my generator creates the model stub files when given a name that
corresponds to a table that already exists and which has metadata in
the database. i would like to check in my g...