So assume I have used rails generate to create a model and subsequently it created migrations for it.
Now it turns out I made a couple of modifications to those models (fixed up some relations). Is it possible to create migrations based off of my current model?
- I don't want to use rails generate to generate the model again.
- I don't want to manually write a migration.