diff options
author | heavysixer <heavysixer@gmail.com> | 2008-10-18 10:24:27 -0500 |
---|---|---|
committer | heavysixer <heavysixer@gmail.com> | 2008-10-18 10:24:27 -0500 |
commit | 05c3339b14aec3e6fad5396fcc60473bc6508334 (patch) | |
tree | d38200e01f71069fa0eb2642bddd6cc781094e8d | |
parent | 6ef78cca58d8559a8ebce7dab4abdc92c6899297 (diff) | |
download | rails-05c3339b14aec3e6fad5396fcc60473bc6508334.tar.gz rails-05c3339b14aec3e6fad5396fcc60473bc6508334.tar.bz2 rails-05c3339b14aec3e6fad5396fcc60473bc6508334.zip |
fleshing out the topics and removing some redundancy.
-rw-r--r-- | railties/doc/guides/activerecord/active_record_basics.txt | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/railties/doc/guides/activerecord/active_record_basics.txt b/railties/doc/guides/activerecord/active_record_basics.txt index 8feb6953f1..5b82bc8252 100644 --- a/railties/doc/guides/activerecord/active_record_basics.txt +++ b/railties/doc/guides/activerecord/active_record_basics.txt @@ -2,19 +2,32 @@ ActiveRecord Basics ================================= == ORM - + - Rails Associations + == What is ActiveRecord + - Automated mapping between classes and tables, attributes and columns + - Associations between objects controlled by meta-programming macros. + - Validations + - Callback == Philosophical Approaches & Common Conventions + - Naming Conventions + - ids +== ActiveRecord Magic + - timestamps + - updates == How ActiveRecord Maps your Database. +- sensible defaults +- overriding conventions == Growing Your Database Relationships Naturally == Attributes + - attribute accessor method. How to override them? + - attribute? + - dirty records + - +== ActiveRecord handling the CRUD of your Rails application - Understanding the life-cycle of an ActiveRecord -== ActiveRecord Magic - -== Understanding the life-cycle of an ActiveRecord - -== Ensuring data integrity and
\ No newline at end of file +== Validations & Callbacks
\ No newline at end of file |