aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/tweet.rb
blob: a1124f9b0bf6c05f2854b82f2f7e8fcd4bc6c562 (plain)
1
2
3
4
5
class Tweet < ActiveRecord::Base
  belongs_to :user
  has_many :favorites, :dependent => :delete_all
  has_many :retweets, :dependent => :delete_all
end