Changeset 8285
- Timestamp:
- 12/05/07 14:47:44 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activerecord/CHANGELOG
r8282 r8285 1 1 *SVN* 2 3 * Document the timestamps schema definition method. Closes #9000 [mikong] 2 4 3 5 * Give examples for what tables should be called for models inside a module namespace. Closes #10288 [scott_willson] trunk/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb
r8199 r8285 433 433 end 434 434 435 # Appends <tt>:datetime</tt> columns <tt>:created_at</tt> and 436 # <tt>:updated_at</tt> to the table. 435 437 def timestamps 436 438 column(:created_at, :datetime)