Changeset 4739
- Timestamp:
- 08/09/06 15:11:18 (2 years ago)
- Files:
-
- trunk/activerecord/CHANGELOG (modified) (1 diff)
- trunk/activerecord/lib/active_record/base.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activerecord/CHANGELOG
r4737 r4739 1 1 *SVN* 2 3 * Document find's :from option. Closes #5762. [andrew@redlinesoftware.com] 2 4 3 5 * PostgreSQL: autodetected sequences work correctly with multiple schemas. Rely on the schema search_path instead of explicitly qualifying the sequence name with its schema. #5280 [guy.naor@famundo.com] trunk/activerecord/lib/active_record/base.rb
r4728 r4739 375 375 # * <tt>:select</tt>: By default, this is * as in SELECT * FROM, but can be changed if you for example want to do a join, but not 376 376 # include the joined columns. 377 # * <tt>:from</tt>: By default, this is the table name of the class, but can be changed to an alternate table name (or even the name 378 # of a database view). 377 379 # * <tt>:readonly</tt>: Mark the returned records read-only so they cannot be saved or updated. 378 380 # * <tt>:lock</tt>: An SQL fragment like "FOR UPDATE" or "LOCK IN SHARE MODE".