Changeset 3075
- Timestamp:
- 11/17/05 20:48:10 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activerecord/CHANGELOG
r3074 r3075 1 1 *SVN* 2 3 * Document :force option to create_table. #2921 [Blair Zajac <blair@orcaware.com>] 2 4 3 5 * Don't add the same conditions twice in has_one finder sql. #2916 [Jeremy Evans] trunk/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
r2817 r3075 44 44 # [<tt>:temporary</tt>] 45 45 # Make a temporary table. 46 # [<tt>:force</tt>] 47 # Set to true or false to drop the table before creating it. 48 # Defaults to false. 46 49 # 47 50 # ===== Examples