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..

link|improve this question

67% accept rate
gives you an empty model? what does that mean? What are you trying to do? :) – Codeglot Nov 7 '10 at 21:02
i expected it to contain all fields and relations of that table, but all i get is an empty class that derives from ActiveRecord::Base – glaucus Nov 7 '10 at 21:04
what you are doing is not possible unless you create your own scripts. – Codeglot Nov 7 '10 at 23:22
feedback

3 Answers

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:

ModelName.find_by_name('foo')

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 schema.rb to see the models and all the fields in one place. Also, if you would prefer to see the schema for each model in the model file, you can use the annotate_models gem, which will put the db schema in a comment at the top of the model file.

link|improve this answer
Wow, thanks I never knew this could happen! ehhe. I learn something new today. – Hisoka Apr 22 at 2:15
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. Schema Dumping and You will help you dump it to use as a reference for building migrations.

ActiveRecord makes some suppositions about the table naming and expects an id field to be the primary key with a sequential number as the type. Having the migrations would help you to refactor the tables and/or fieldnames and types, but you can do those same things via your DBM's command-line. You don't really have to follow ActiveRecord's style but doing so helps avoid odd errors and lets AR infer things to make your life easier.

link|improve this answer
feedback

Could try Magic Model Generator

link|improve this answer
1  
Note: Is for Rails 2, no Rails 3 available. – Michael Durrant Feb 14 at 4:05
1  
Does anyone know of any alternative methods that generate models with relationships, etc from existing schema in Rails 3? – Arosboro Apr 20 at 20:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.