ensl.org/app/models/tweet.rb
Luke Barratt 4199062a9c Initial article text code
Added model annotations
2014-03-26 11:09:39 +00:00

22 lines
447 B
Ruby

# == Schema Information
#
# Table name: tweets
#
# id :integer not null, primary key
# msg :string(255)
# link :string(255)
# created_at :datetime
# updated_at :datetime
#
class Tweet < ActiveRecord::Base
include Extra
scope :recent2, :order => "created_at DESC", :limit => 2
scope :recent, :order => "created_at DESC", :limit => 5
has_many :comments, :as => :commentable
def to_s
msg
end
end