Is it possible to make Rails generate several model migrations in just 1 command? Something like...
$ rails g model Product1 name:string, Product2 name:string, Product3 name:string [...]
Background:
I have to generate about 4'000 models/db tables.
Running 1 generator command for each one would take probably over 10 hours...
Or do I have to think outside the box for a faster solution to this?