Reputation: 672
This morning I started getting this error when trying to generate migration files:
$ rails generate migraton add_opp_inquiry_date inquiry_date:string
Could not find generator migraton.
I don't know where to begin looking for what caused this - a beginner sorry. Any suggestions would be really helpful. I'm running the command from the correct directory.
Have tried looking through old threads and the common theme is people leaving out "migration" - which I'm not.
Thanks
Upvotes: 0
Views: 47
Reputation: 5721
You misspelled migration. Try this:
rails generate migration add_opp_inquiry_date inquiry_date:string
Upvotes: 2