I've configured my database.yml to point to my existing mysql database
how can I generate models from it?
rails generate model existing_table_name
only gives an emty model..
|
I've configured my database.yml to point to my existing mysql database how can I generate models from it?
only gives an emty model..
| |||||||
feedback
|
|
A Rails model doesn't show your fields, but you can still use them. Try the following. Assuming you have a Model named ModelName and a field called "name", fire up the Rails console and type:
Given a name that exists in the DB, you should see results. Rails doesn't infer relationships though, but if your database follows Rails conventions they are easily added. Update I've noticed this particular lack of explicitness ("magic") is a source of confusion for newbies to Rails. You can always look in | ||||
feedback
|
|
ActiveRecord doesn't parse a schema definition. It asks the DBM for the table defs and figures out the fields on the fly. Having the schema is useful if you are going to modify the tables via migrations.
ActiveRecord makes some suppositions about the table naming and expects an | ||||
|
feedback
|
|
Could try Magic Model Generator | |||||||||
feedback
|