mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
4f00c70580
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3776 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
20 lines
No EOL
452 B
Ruby
Executable file
20 lines
No EOL
452 B
Ruby
Executable file
class Topic < ActiveRecord::Base
|
|
has_many :replies, :dependent => true, :foreign_key => "parent_id"
|
|
serialize :content
|
|
|
|
before_create :default_written_on
|
|
before_destroy :destroy_children
|
|
|
|
def parent
|
|
Topic.find(parent_id)
|
|
end
|
|
|
|
protected
|
|
def default_written_on
|
|
self.written_on = Time.now unless attribute_present?("written_on")
|
|
end
|
|
|
|
def destroy_children
|
|
self.class.delete_all "parent_id = #{id}"
|
|
end
|
|
end |