> When we > generate our resources and we specify all the fields in our current > tables, will Hobo learn from them so that it doesn't "destroy" any > data?
The migration generator compares the database and your models. So if you declare the fields in your models in a way that properly matches the database, the generator will say "nothing to change". Say you miss a field by accident, the migration generator always will think you don't want that field anymore, and will suggest to delete it from the database, but we've taken care to always warn and prompt for confirmation, so you can just cancel the migration, and go back to your model to correct the mistake. Tom -- You received this message because you are subscribed to the Google Groups "Hobo Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/hobousers?hl=en.
