1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Changed wording of paragraph 2.1.1 Models to clarify table/model

relationship.

changed wording 'one table ... corresponds to one model' to 'each table
...'
This commit is contained in:
Mike Howard 2011-07-24 10:54:19 -06:00
parent 3665ffda83
commit 25850d17ac

View file

@ -50,7 +50,7 @@ At the core of Rails is the Model, View, Controller architecture, usually just c
h5. Models
A model represents the information (data) of the application and the rules to manipulate that data. In the case of Rails, models are primarily used for managing the rules of interaction with a corresponding database table. In most cases, one table in your database will correspond to one model in your application. The bulk of your application's business logic will be concentrated in the models.
A model represents the information (data) of the application and the rules to manipulate that data. In the case of Rails, models are primarily used for managing the rules of interaction with a corresponding database table. In most cases, each table in your database will correspond to one model in your application. The bulk of your application's business logic will be concentrated in the models.
h5. Views