Browse Source

Cascade delete posts when a feed is deleted

master
Adrian Short 12 years ago
parent
commit
0facefb0bb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/models/feed.rb

+ 1
- 1
app/models/feed.rb View File

@@ -8,7 +8,7 @@ class Feed
key :last_fetched, Time, :default => nil
timestamps!

many :posts
many :posts, :dependent => :destroy

validates :title, :presence => true
validates_format_of :feed_url, :with => URI::regexp(%w(http https)), :message => "must be a valid URL"


Loading…
Cancel
Save