Hi…
Is there some way to configure Rails to not create a
db/migrate/###_model_name.rb when I do a script/generate model
ModelName?
It’s a little annoying when I’m setting up a new application since I
prefer creating all the first tables in a 001_inital_schema.rb file.
Then when I generate models for those tables I get migration scripts
for all of them again that I have to delete. And it’s a bit annoying
especially since I use the --svn flag so the unneeded migration go
also into the subversion repo. I’m hoping that there is some way to
disable this without editing the generate script itself.
Personally I feel this shouldn’t to this by default since the
script/generate migration command is much more to the point.
–