diff --git a/app/models/feed.rb b/app/models/feed.rb index 1176fc5..dec2f30 100644 --- a/app/models/feed.rb +++ b/app/models/feed.rb @@ -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"